-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (54 loc) · 2.78 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Erik's Favourite Products</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Erik's Favourite Products</h1>
</header>
<main>
<section class="intro">
<p>Welcome to Erik's Favourites! Here you'll find a curated list of my favourite products. Check them out and find your next must-have item!</p>
</section>
<section class="products">
<div class="product">
<img src="https://m.media-amazon.com/images/I/61wwPjpDKcL.__AC_SX300_SY300_QL70_ML2_.jpg" alt="Product 1">
<h2>Product 1</h2>
<p>This is one of my top recommended products. High quality, durable, and perfect for everyday use.</p>
<a href="https://amzn.to/4eHjwvr" class="buy-btn">Buy Now</a>
</div>
<div class="product">
<img src="https://m.media-amazon.com/images/I/71fEF7mA-WL._AC_SL1500_.jpg" alt="Product 2">
<h2>Product 2</h2>
<p>Another top-notch item, great for daily use. Ergonomically designed and made from high-quality materials.</p>
<a href="https://amzn.to/3zZgEuC" class="buy-btn">Buy Now</a>
</div>
<div class="product">
<img src="https://m.media-amazon.com/images/I/61k7iwJkCmL._AC_SL1500_.jpg" alt="Product 3">
<h2>Product 3</h2>
<p>Perfect for tech enthusiasts. This product offers excellent performance and durability.</p>
<a href="https://amzn.to/488ZYgN" class="buy-btn">Buy Now</a>
</div>
<div class="product">
<img src="https://m.media-amazon.com/images/I/71dYYJK04fL._AC_SL1500_.jpg" alt="Product 4">
<h2>Product 4</h2>
<p>An essential item for anyone looking for great functionality combined with sleek design.</p>
<a href="https://amzn.to/486VCa2" class="buy-btn">Buy Now</a>
</div>
<div class="product">
<img src="https://m.media-amazon.com/images/I/71B9+MeCRrL._AC_SL1500_.jpg" alt="Product 5">
<h2>Product 5</h2>
<p>A must-have gadget for modern living. Designed to enhance your daily routine with ease and style.</p>
<a href="https://amzn.to/4eZre3J" class="buy-btn">Buy Now</a>
</div>
</section>
</main>
<footer>
<p>Affiliate Disclosure: As an Amazon Associate, I earn from qualifying purchases. This does not affect your price but helps support my website.</p>
</footer>
</body>
</html>