-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnavbar.html
60 lines (58 loc) · 2.27 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
<!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" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="./style/navbar.css" />
<title>Document</title>
</head>
<body>
<div id="navbar">
<div id="navbarSubMain">
<div id="navbarTopSection">
<div onclick="saveBig()"><p>Save BIG withj our appl <span class="navbarArrowSymbol">∨</span></p></div>
<div><p>Language <span class="navbarArrowSymbol">∨</span></p></div>
<div><p>Support Center <span class="navbarArrowSymbol">∨</span></p></div>
</div>
<div id="navbarMidlePart">
<div style="cursor: pointer;"> <img src="./img/download.png" alt=""></div>
<div id="navbarAllCategories"><p>All Categories <span>▾</span></p></div>
<div style="border: 1px solid transparent;" id="navbarInput" ><input type="text" placeholder="Search by keywords"></div>
<div id="navbarSearchSymbol">
<button type="submit"><i class="fa fa-search"></i></button>
</div>
<div id="navbarShip">
<p>Ship to</p>
<img id="navbarFlag" src="./img/flag.png" alt="">
<p>/ INR<span class="navbarArrowSymbol">∨</span></p>
</div>
<div id="navbarSignIn">
<img src="https://www.svgrepo.com/show/198180/user-profile.svg" alt="">
<p id="navbarSignIn">Sign In</p>
</div>
<div id="navbarCart"><i class="fa fa-shopping-cart" style="font-size:30px;color:white"></i></div>
</div>
<div id="navbarBottomPart">
<div id="navbarCategories">
<div id="navbarCategoriesSymbol">
<p>---</p>
<p>---</p>
<p>---</p>
</div>
<p>Categories</p>
</div>
<div><p>New</p></div>
<div><p>Bestselling</p></div>
<div><p>Brand</p></div>
<div><p>Clearance</p></div>
<div><p>Deals</p></div>
<div><p>Coupon</p></div>
<div><p>App Only</p></div>
</div>
</div>
</div>
</body>
</html>
<script src="./navbar.js" type="module"></script>