-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsupp.html
More file actions
55 lines (50 loc) · 2.5 KB
/
supp.html
File metadata and controls
55 lines (50 loc) · 2.5 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Healthcare Products & Supplements</title>
<link rel="stylesheet" href="supp.css">
</head>
<body>
<h1>Good Health & Well-Being</h1>
<button class="btn-healthcare" onclick="showHealthcareProducts()">
Explore Healthcare Products & Supplements
</button>
<div id="healthcareProducts">
<h2>Healthcare Products & Supplements</h2>
<ul class="product-list">
<li>
<div class="product-name">High Protein Oats</div>
<div class="product-description">Feel satiated for longer with satisfying protein in each spoonful.</div>
<a class="product-link" href="https://www.muscleblaze.com/sv/muscleblaze-high-protein-oats/SP-98284?navKey=VRNT-201886&itracker=w:brandCatalog||;p:15|;e:201886|;" target="_blank" rel="noopener">Buy Now</a>
</li>
<li>
<div class="product-name">Omega-3 Fish Oil</div>
<div class="product-description">Supports heart and brain health.</div>
<a class="product-link" href="https://www.muscleblaze.com/sv/muscleblaze-omega-3-fish-oil-1000-mg-with-180mg-epa-and-120mg-dha/SP-36756?navKey=VRNT-90655&itracker=w:search||searchedTerm-omega|;" target="_blank" rel="noopener">Buy Now</a>
</li>
<li>
<div class="product-name">High Protein Peanut Butter</div>
<div class="product-description">With 30g protein this product is a great source of protein for fulfilling your daily protein needs</div>
<a class="product-link" href="https://www.muscleblaze.com/sv/muscleblaze-high-protein-peanut-butter/SP-58705?navKey=VRNT-191448&itracker=w:brandCatalog||;p:24|;e:191448|;" target="_blank" rel="noopener">Buy Now</a>
</li>
<li>
<div class="product-name">Probiotics Muesli</div>
<div class="product-description">Promotes digestive health and balance.</div>
<a class="product-link" href="https://www.muscleblaze.com/sv/muscleblaze-probiotic-muesli/SP-89293?srsltid=AfmBOorGBPPpgoyrWqsMSAncPwGw9IzwS25F7eNYoaqIY0CbIz-BY6PU" target="_blank" rel="noopener">Buy Now</a>
</li>
</ul>
</div>
<script>
function showHealthcareProducts() {
const productsDiv = document.getElementById('healthcareProducts');
if (productsDiv.style.display === 'none' || productsDiv.style.display === '') {
productsDiv.style.display = 'block';
} else {
productsDiv.style.display = 'none';
}
}
</script>
</body>
</html>