-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
140 lines (124 loc) · 4.53 KB
/
index.html
File metadata and controls
140 lines (124 loc) · 4.53 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Amazon Clone</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="header-top">
<div class="header-logo">
<img src="Amazon-Logo.webp" alt="Amazon Logo">
</div>
<div class="header-search">
<input type="text" placeholder="Search...">
<button>Search</button>
<button> Add To Cart</button>
<a href="addtocart.html"></a>
</div>
<div class="header-account">
<a href="sign in.html">Hello, Sign in</a>
<div class="header-dropdown">
<a href="#">Account & Lists</a>
<a href="#">Orders</a>
<a href="#">Cart</a>
</div>
</div>
</div>
<div class="header-nav">
<a href="All.html">All</a>
<a href="Best Sellers.html">Best Sellers</a>
<a href="Customer Service.html">Customer Service</a>
<a href="Fashion.html">Fashion</a>
<a href="Electronics.html">Electronics</a>
</div>
</header>
<!-- Rest of your content -->
</body>
</html>
</header>
<section class="products">
<div class="product">
<img src="product1.jfif" alt="Product 1">
<h2>Water Bottles</h2>
<p>Description of Product 1.</p>
<p class="price">$99.99</p>
<button>Add to Cart</button>
</div>
<div class="product">
<img src="product2.jfif" alt="Product 2">
<h2>2 in 1 Torch</h2>
<p>Description of Product 2.</p>
<p class="price">$149.99</p>
<button>Add to Cart</button>
</div>
<div class="product">
<img src="product3.jfif" alt="Product 2">
<h2>HandWash</h2>
<p>Description of Product 2.</p>
<p class="price">$149.99</p>
<button>Add to Cart</button>
</div>
<div class="product">
<img src="product4.jfif" alt="Product 2">
<h2>Co-Natural Facewash</h2>
<p>Description of Product 2.</p>
<p class="price">$149.99</p>
<button>Add to Cart</button>
</div>
<div class="product">
<img src="product5.jfif" alt="Product 2">
<h2>TV Remote</h2>
<p>Description of Product 2.</p>
<p class="price">$149.99</p>
<button>Add to Cart</button>
</div>
<div class="product">
<img src="product6.jfif" alt="Product 2">
<h2>Beauty COncealers</h2>
<p>Description of Product 2.</p>
<p class="price">$149.99</p>
<button>Add to Cart</button>
</div>
<!-- Add more products here -->
</section>
<footer>
<div class="footer-container">
<div class="footer-section">
<h3>Get to Know Us</h3>
<ul>
<li><a href="#">About Us</a></li>
<li><a href="#">Careers</a></li>
<li><a href="#">Press Releases</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Make Money with Us</h3>
<ul>
<li><a href="#">Sell on Amazon</a></li>
<li><a href="#">Sell under Amazon Accelerator</a></li>
<li><a href="#">Become an Affiliate</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Amazon Payment Products</h3>
<ul>
<li><a href="#">Amazon Business Card</a></li>
<li><a href="#">Shop with Points</a></li>
<li><a href="#">Reload Your Balance</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Let Us Help You</h3>
<ul>
<li><a href="#">Amazon and COVID-19</a></li>
<li><a href="#">Your Account</a></li>
<li><a href="#">Your Orders</a></li>
</ul>
</div>
</div>
</footer>
</body>
</html>