-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
142 lines (119 loc) · 4.58 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Project1</title>
<!--we are going to link style.css to index.html which is mandatory part-->
<link rel="stylesheet" href="style.css">
<!--we have to link the website of font awesome to learn how to add pictures to our web page. to copy the link of font awesome go to google search for cdnjs open the first link that will appear on the cdnjs webpage and copy the link and paste it here-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">
</head>
<body>
<header>
<div class="navbar">
<div class="nav-logo border">
<div class="logo"></div>
</div>
<div class="nav-address border">
<p class="add-first">Deliver To</p>
<div class="add-icon">
<i class="fa-solid fa-location-dot"></i>
<p class="add-second">India</p>
</div>
</div>
<div class="nav-search">
<select class="search-select">
<option>All</option>
</select>
<input placeholder="Search Amazon" class="search-input">
<div class="search-icon">
<i class="fa-solid fa-magnifying-glass"></i>
</div>
</div>
<div class="nav-text">
<p class="add-text">Hello,sign in</p>
<select class="search-sel">
<option>Accounts & Lists</option>
</select>
</div>
<div class="nav-box4">
<p class="add-returns">Returns</p>
<p class="add-orders">& Orders</p>
</div>
<div class="add-icon1">
<i class="fa-solid fa-cart-plus"></i>
<p class="add-cart">Cart</p>
</div>
</div>
<div class="panel">
<div class="panel-all">
<i class="fa-solid fa-bars"></i>
All
</div>
<div class="panel-ops">
<a href="#">Today's deals</a>
<a href="#">Customer Service</a>
<a href="#">Registry</a>
<a href="#">Gift Cards</a>
<a href="#">Sell</a>
</div>
<div class="panel-deals">
<a href="#">Shop Deals In Electronics</a>
</div>
</header>
<div class="hero-section"></div>
<hr/>
<div class="para-section">
<p><b>Explore Your One Stop-Shop For All Your Requirements.Enhance Your Shopping Experience With Our Personalized Recommendations.</b></p>
</div>
<hr/>
<div class="shop-section">
<div class="box1 box">
<h4>CLOTHING</h4>
</div>
<div class="box5 box">
<h4>COSMETICS</h4>
</div>
<div class="box7 box">
<h4>GAMES AND TOYS</h4>
</div>
</div>
<footer>
<div class="footer-1">
<hr/>
<button>Back to Top</button>
<hr/>
</div>
<div class="footer-2">
<ul>
<h4>Get To Know More</h4>
<br/>
<a href="#">Blog</a>
<a href="#">Careers</a>
<a href="#">About Amazon</a>
</ul>
<br/>
<ul>
<h4>Help</h4>
<br/>
<a href="#">Amazon Assistant</a>
<a href="#">Your Account</a>
<a href="#">Your Orders</a>
</ul>
<br/>
<ul>
<h4>Amazon Payment Products</h4>
<br/>
<a href="#">Shop With Points</a>
<a href="#">Reload Your Balance</a>
</ul>
</div>
<div class="footer-end">
<a href="#">Conditions To Use</a>
<a href="#">Privacy Policy</a>
<a href="#">Your Ads Privacy</a>
</div>
</footer>
</body>
</html>