-
Notifications
You must be signed in to change notification settings - Fork 0
/
gptamazon.html
75 lines (69 loc) · 2.2 KB
/
gptamazon.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Amazon-like Prototype</title>
<link rel="stylesheet" href="gptamazon.css">
</head>
<body>
<!-- Header Section -->
<header>
<div class="logo">
<h1>Amazon-like</h1>
</div>
<div class="search-bar">
<input type="text" placeholder="Search products...">
<button>Search</button>
</div>
<div class="cart">
<button>Cart (0)</button>
</div>
</header>
<!-- Navigation Bar -->
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Deals</a></li>
<li><a href="#">Customer Service</a></li>
<li><a href="#">Gift Cards</a></li>
<li><a href="#">Best Sellers</a></li>
<li><a href="#">Today's Deals</a></li>
</ul>
</nav>
<!-- Main Content Section -->
<main>
<h2>Featured Products</h2>
<div class="product-container">
<div class="product">
<img src="https://via.placeholder.com/150" alt="Product Image">
<h3>Product Name 1</h3>
<p>$19.99</p>
<button>Add to Cart</button>
</div>
<div class="product">
<img src="https://via.placeholder.com/150" alt="Product Image">
<h3>Product Name 2</h3>
<p>$29.99</p>
<button>Add to Cart</button>
</div>
<div class="product">
<img src="https://via.placeholder.com/150" alt="Product Image">
<h3>Product Name 3</h3>
<p>$39.99</p>
<button>Add to Cart</button>
</div>
<div class="product">
<img src="https://via.placeholder.com/150" alt="Product Image">
<h3>Product Name 4</h3>
<p>$49.99</p>
<button>Add to Cart</button>
</div>
</div>
</main>
<!-- Footer Section -->
<footer>
<p>© 2024 Amazon-like Prototype. All rights reserved.</p>
</footer>
</body>
</html>