-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnavbar.html
More file actions
58 lines (58 loc) · 2.17 KB
/
navbar.html
File metadata and controls
58 lines (58 loc) · 2.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="navbarStyle.css">
</head>
<body>
<div id="navbar">
<!-- this is a first div of navbar -->
<div id="first">
<!-- this div is for logo -->
</label>
<div id="child">
<div>
<img src="https://www.firstpost.com/static/images/fp-desk-logo.png" alt="logo">
</div>
<!-- this div is for icon -->
<div>
<a href="https://www.facebook.com/firstpostin">
<i class="fa-brands fa-facebook"></i>
</a>
<a href="">
<i class="fa-brands fa-twitter"></i>
</a>
<a href="">
<i class="fa-brands fa-instagram-square"></i>
</a>
<a href="">
<i class="fa-brands fa-youtube-square"></i>
</a>
</div>
</div>
</div>
<div id="second">
<div id="childAm">
<p><a href="">Health</a></p>
<p><a href="">India</a></p>
<p><a href="">World</a></p>
<p><a href="">Politics</a></p>
<p><a href="">Auto</a></p>
<p><a href="">Opinion</a></p>
<p><a href="">Sports</a></p>
<p><a href="">Cricket</a></p>
<p><a href="">Entertainment</a></p>
<p><a href="">Tech</a></p>
</div>
<div id="seChildAm">
<button>Crypto</button>
<a href=""><img src="https://www.firstpost.com/static/images/netrasuraksha_L2_103x25px.jpg" alt="netraSurakshaLogo"></a>
</div>
</div>
</div>
</body>
</html>
<script src="https://kit.fontawesome.com/583f110147.js" crossorigin="anonymous"></script>