-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
125 lines (125 loc) · 5.67 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name = "author" content = "Vedant Sagwal">
<title>Amazon</title>
<link rel = "stylesheet" href = "style.css">
<link rel = "icon" href = "images/amazonLogo.png">
</head>
<body>
<header>
<div id = "taskBar">
<div id = "amazonLogo"><img src="images/amazon.jpeg" alt="amazon logo" height = "45" width = "110"></div>
<div id = "location">
<div id = "locationLogo"><br><img src="images/location-dot-solid.svg" alt="location logo" height = "25" width = "30"></div>
<div id = "enterLocation"><p>Deliver to</p><a href = "#">India</a></div>
</div>
<div id = "categories">
<select id = "options">
<option value="all" selected>All</option>
<option value = "artsNcrafts">Arts & Crafts</option>
<option value = "automotive">Automotive</option>
<option value = "baby">Baby</option>
<option value = "beauty">Beauty and Personal Care</option>
<option value = "books">Books</option>
<option value = "boys">Boys' Fashion</option>
</select>
</div>
<div id = "searchBar">
<input type="text" name = "search" placeholder = "Seach Amazon" id = "search">
</div>
<div id = "searchIcon">
<button type="submit" name = "finder" id = "finder"><img src="images/seachLogo.svg" alt="search logo" height = "23" width = "30"></button>
</div>
<div id = "accounts">
<p>Hello,sign in </p><a href = "#">Accounts & Lists</a>
</div>
<div id = "orders">
<p>Returns</p><a href = "#">& Orders</a>
</div>
<div id = "cart">
<a href = "#"><img src="images/carticon.svg" alt="cart icon" height = "40"> <strong>Cart</strong></a>
</div>
</div>
<div id = "navBar">
<div id = "menu">
<img src="images/menuIcon.svg" alt="menu icon" height = "20">
All
</div>
<div id = "deals"><a href = "#">Today's Deals</a></div>
<div id = "service"><a href = "#">Customer Service</a></div>
<div id = "registry"><a href = "#">Registry</a></div>
<div id = "gift"><a href = "#">Gift Cards</a></div>
<div id = "sell"><a href = "#">Sell</a></div>
</div>
</header>
<main>
<div id = "photo1"></div>
<div id = "info">You are on amazon.com. You can also shop on Amazon India for millions of products with fast local delivery.Click here to go to <a href = "https://amazon.in" id = "indiansite"> amazon.in</a></div>
<div id = "photo2"></div>
</main>
<footer id = "footer">
<div id = "knowUs">
<p id = "know">Get To Know Us</p><br>
<a href = "#footer">Carrers</a><br>
<a href = "#footer">Blog</a><br>
<a href = "#footer">About Amazon</a><br>
<a href = "#footer">Investor Relations</a><br>
<a href = "#footer">Amazon Devices</a><br>
<a href = "#footer">Amazon Science</a><br>
</div>
<div id = "makeMoney">
<p id = "money">Make Money with Us</p><br>
<a href = "#footer">Sell Products on Amazon</a><br>
<a href="#footer">Sell on Amazon business</a><br>
<a href="#footer">Sell Apps on Amazon</a><br>
<a href="#footer">Become an Affiliate</a><br>
<a href="#footer">Self publish with Us</a><br>
<a href="#footer">Host an Amazon Hub</a><br>
<a href="#footer">Advertise Your Products</a>
</div>
<div id = "payment">
<p id = "pay">Amazon Payment Products</p><br>
<a href="#footer">Amazon Business Card</a><br>
<a href="#footer">Shop with Points</a><br>
<a href="#footer">Reload your Balance</a><br>
<a href="#footer">Amazon Currency Converter</a><br>
</div>
<div id = "help">
<p id = "amazonHelp">Let Us Help You</p><br>
<a href="#footer">Amazon and COVID-19</a><br>
<a href="#footer">Your Account</a><br>
<a href="#footer">Your Orders</a><br>
<a href="#footer">Shipping Rates and Policies</a><br>
<a href="#footer">Returns and Replacements</a><br>
<a href="#footer">MAnage Your Content and Devices</a><br>
<a href="#footer">Amazon Assistant</a><br>
<a href="#footer">Help</a><br>
</div>
</footer>
<div id = "backToTop">
<a href = "#">Back To Top</a>
</div>
<div id = "last">
<div id = "lastimage1"><img src="images/amazon.jpeg" alt="amazon logo" height = "40"></div>
<div id = "language">
<select name="lang" id="lang">
<option value = "english">English</option>
<option value = "hindi">Hindi</option>
<option value = "german">German</option>
<option value = "french">French</option>
</select>
</div>
<div id = "currency">
<select name="curr" id="curr">
<option value = "usd">$USD - US Dollar</option>
<option value = "ruppees">Indian Ruppees</option>
<option value = "australiandollar">Australian Dollar</option>
<option value = "yen">Japanese Yen</option>
</select>
</div>
</div>
</body>
</html>