-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (57 loc) · 2.08 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
<!-- index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TruamaZon - Funny Edition</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Header -->
<header>
<h1>TruamaZon - The Funny Store</h1>
<nav>
<a href="#">Home</a>
<a href="#">Shop</a>
<a href="#">Deals</a>
<a href="#">Cart</a>
</nav>
</header>
<!-- Hero Banner -->
<div class="hero">
Welcome to "TruamaZon"! <br> Where we sell products you never knew you needed!
<p>50% off imaginary products this week!</p>
</div>
<div class="products">
<div class="product-card">
<img src="https://placekitten.com/200/150" alt="Kitty Keyboard">
<h3>Cat-Approved Keyboard</h3>
<p>Now 100% fur-proof! <br> <span class="old-price">$100</span> $49.99</p>
<button>Add to Cart</button>
</div>
<div class="product-card">
<img src="https://placekitten.com/200/151" alt="Comfy Chair">
<h3>Invisible Gaming Chair</h3>
<p>Because sitting is overrated. <br> <span class="old-price">$200</span> $99.99</p>
<button>Add to Cart</button>
</div>
<div class="product-card">
<img src="https://placekitten.com/200/152" alt="Air Box">
<h3>Box of Premium Air</h3>
<p>Guaranteed fresher than your neighbor's. <br> <span class="old-price">$500</span> $249.99</p>
<button>Add to Cart</button>
</div>
<div class="product-card">
<img src="https://placekitten.com/200/153" alt="Smart Spoon">
<h3>AI-Powered Smart Spoon</h3>
<p>Detects food temperature and judges you. <br> <span class="old-price">$30</span> $19.99</p>
<button>Add to Cart</button>
</div>
</div>
<!-- Footer -->
<footer>
<p>TruamaZon © 2024 | Free laughs with every purchase!</p>
</footer>
</body>
</html>