-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathall_product.html
64 lines (64 loc) · 2.7 KB
/
all_product.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Product List</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<section class="product-list">
<h2 class="section-title">Our stands out products</h2>
<div class="grid-container">
<!-- Product 1 -->
<div class="product-card" style="background-color: #fef1f1;">
<h3>Stress relief formula</h3>
<p>Relaxation and mental balance</p>
<img src="resource/product1.png" alt="Sleep Well Gummies">
<p class="price">$65.20</p>
<button class="buy-now">Buy now</button>
</div>
<!-- Product 2 -->
<div class="product-card" style="background-color: #f0f6ff;">
<h3>Immune defense booster</h3>
<p>Year-round immune protection</p>
<img src="resource/product2.png" alt="Mushroom 10X">
<p class="price">$30.50</p>
<button class="buy-now">Buy now</button>
</div>
<!-- Product 3 -->
<div class="product-card" style="background-color: #fefbe8;">
<h3>Muscle recovery complex</h3>
<p>Mobility and workout recovery</p>
<img src="resource/product3.png" alt="AdrenaZen">
<p class="price">$70.00</p>
<button class="buy-now">Buy now</button>
</div>
<!-- Product 4 -->
<div class="product-card" style="background-color: #f5fbff;">
<h3>Daily multivitamin</h3>
<p>For foundational health</p>
<img src="resource/product4.png" alt="VitalAlgae">
<p class="price">$15.00</p>
<button class="buy-now">Buy now</button>
</div>
<!-- Product 5 -->
<div class="product-card" style="background-color: #fefbe8;">
<h3>Muscle recovery complex</h3>
<p>Mobility and workout recovery</p>
<img src="resource/product5.png" alt="AdrenaZen">
<p class="price">$70.00</p>
<button class="buy-now">Buy now</button>
</div>
<!-- Product 6 -->
<div class="product-card" style="background-color: #f5fbff;">
<h3>Daily multivitamin</h3>
<p>For foundational health</p>
<img src="resource/product6.png" alt="VitalAlgae">
<p class="price">$15.00</p>
<button class="buy-now">Buy now</button>
</div>
</div>
</section>
</body>
</html>