-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
71 lines (69 loc) · 3.34 KB
/
index.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
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="index.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<title>Document</title>
</head>
<body>
<header>
<div class="navbar">
<div class="logo border">
</div>
<div class="amz-address border">
<p class="deliver">Deliver to</p>
<div class="deliver-address">
<i class="fa-solid fa-location-dot"></i>
<p>India</p>
</div>
</div>
<div class="search">
<select class="all" name="" id="" style="height: 35px; text-align: center; background-color:rgb(197, 197, 197)">
<option value="" style="background-color: #0f1111;">All</option>
</select>
<input type="text" placeholder="Search Amazon" style="height: 33.8px; width: 750px; border: none;">
<div class="magnifying-glass">
<i class="fa-solid fa-magnifying-glass" style="color: white"></i> </div>
</div>
<div class="country">
<select name="" id="" >
<option value="" class="countries">EN</option>
<option value="" class="countries">IN</option>
</select>
</div>
<div class="sign-in">
<div class="text">
<p id="hello">Hello, sign in</p>
<!-- <p >Accounts & Lists</p> -->
<select name="" id="" id="acc">
<option value="">Accounts & Lists</option>
</select>
</div>
</div>
<div class="returns border">
<p id="small" style="font-size: 12px;">Returns</p>
<p id="large" style="font-size: 17px; font-weight: bolder;">& Orders</p>
</div>
<div class="cart border">
<i class="fa-solid fa-cart-shopping fa-xl" style="color: white;"></i>
<p style="color: white; font-size: 13px;">Cart</p>
</div>
</div>
<div class="sub-navbar">
<div class="menu border" style="padding-top: 7px; padding-bottom: 7px ;">
<i class="fa-solid fa-bars" style="color: white;"></i>
<span style="color: white; margin-left: 5px;">All</span>
</div>
<p class="border" style="padding-top: 9px; padding-bottom: 9px; text-align: center;">Today's deal</p>
<p class="border" style="padding-top: 9px; padding-bottom: 9px; text-align: center;">Customer Service</p>
<p class="border" style="padding-top: 9px; padding-bottom: 9px; text-align: center;">Registry</p>
<p class="border" style="padding-top: 9px; padding-bottom: 9px; text-align: center;">Gift Cards</p>
<p class="border" style="padding-top: 9px; padding-bottom: 9px; text-align: center;">Sell</p>
</div>
</header>
</body>
</html>