-
Notifications
You must be signed in to change notification settings - Fork 4
/
navbar.html
72 lines (62 loc) · 2.43 KB
/
navbar.html
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
59
60
61
62
63
<!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>Navbar</title>
<script
src="https://kit.fontawesome.com/24c494a6b6.js"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="navbar.css">
</head>
<body>
<div id="navbar">
<div id="left-nav">
<div class="dropdown"><p>Products</p>
<div class="dropdown-con">
<div id="text">
<p>WE'LL HELP YOU —</p>
<h6>Get Your Business Online</h6>
<h6>Market Your Business</h6>
<div class="line"></div>
<p>PLATFORM FEATURES —</p>
<h6>Audience Managment</h6>
<h6>Creative Tools</h6>
<h6>Marketing Automation</h6>
<h6>Insides & Analytics</h6>
<div class="line"></div>
<p>NOT SURE WHERE TO START —</p>
<h6>What's Right for Me?</h6>
<div class="line"></div>
<h6>Talk to Sales: +1 (800) 315-5939</h6>
<p><b>Produce Update</b></p>
<p id="p">Get The latest on new features,product improvement and other annoncements</p>
<p id="see">See What's New —</p>
</div>
</div>
</div>
<div class="dropdown"><p>Resources</p></div>
<div class="dropdown"><p>Inspiration</p></div>
<div class="dropdown" ><p>Pricing</p></div>
</div>
<div id="mid-nav">
<img src="https://i.ibb.co/3kgB0Q2/Mail-Champ.png" alt="">
</div>
<div id="right-nav">
<div id="right-nav-sale">
<div class="sale">Sales:</div>
<div>+1(800) 315-5939</div>
</div>
<div class="icon"><i class="fa-solid fa-globe"></i></div>
<div class="icon"><i class="fa-solid fa-magnifying-glass"></i></div>
</div>
<div id="nav-btn">
<div><button class="btn1">Log In</button></div>
<div><button class="btn2">Sign Up</button></div>
</div>
</div>
</body>
</html>
<script src="navbar.js"></script>