-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathamazon clone
52 lines (47 loc) · 1.46 KB
/
amazon clone
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My E-commerce Website</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/products">Products</a></li>
<li><a href="/cart">Cart</a></li>
<li><a href="/login">Login</a></li>
</ul>
</nav>
</header>
<main>
<section class="hero">
<h1>Welcome to Our Store</h1>
<p>Your one-stop shop for everything!</p>
<button id="shop-now">Shop Now</button>
</section>
<section class="product-list">
<h2>Featured Products</h2>
<div class="product-card">
<img src="product1.jpg" alt="Product 1">
<h3>Product 1</h3>
<p>$19.99</p>
<button class="add-to-cart">Add to Cart</button>
</div>
<div class="product-card">
<img src="product2.jpg" alt="Product 2">
<h3>Product 2</h3>
<p>$29.99</p>
<button class="add-to-cart">Add to Cart</button>
</div>
</section>
</main>
<footer>
<p>© 2024 My E-commerce Website</p>
</footer>
<script src="script.js"></script>
</body>
</html>