-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsupplement.html
59 lines (55 loc) · 2.4 KB
/
supplement.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Supplements - Royal Fitness</title>
<link rel="stylesheet" href="supplement.css">
</head>
<body>
<!-- Header -->
<header>
<a href="index.html" class="logo">Royal <span>Fitness</span></a>
<ul class="navbar">
<li><a href="index.html#home">Home</a></li>
<li><a href="index.html#services">Services</a></li>
<li><a href="index.html#about">About Us</a></li>
<li><a href="index.html#plans">Pricing</a></li>
<li><a href="index.html#review">Review</a></li>
<li><a href="yoga_teacher.html">Yoga Teacher</a></li>
<li><a href="supplement.html" class="active">Supplements</a></li>
</ul>
</header>
<!-- Main Section -->
<section class="supplement-section">
<h2 class="heading">Our Recommended <span>Supplements</span></h2>
<div class="supplement-container">
<!-- Creatine -->
<div class="supplement-card fade-in">
<img src="assets/cr.jpeg" alt="Creatine Powder">
<h3>Creatine Powder</h3>
<a href="https://www.amazon.in/s?k=creatine+powder&crid=X5CILZG82H3Q&sprefix=creatine%2Caps%2C378&ref=nb_sb_ss_ts-doa-p_1_8"
target="_blank" class="buy-now-btn">Buy Now</a>
</div>
<!-- Protein Powder -->
<div class="supplement-card fade-in">
<img src="assets/pro.jpeg" alt="Protein Powder">
<h3>Protein Powder</h3>
<a href="https://www.amazon.in/s?k=protein+powder&crid=29MJL15J4TKOG&sprefix=protein+pow%2Caps%2C280&ref=nb_sb_ss_w_hit-vc-lth_protein-powder_k0_1_11"
target="_blank" class="buy-now-btn">Buy Now</a>
</div>
<!-- Cashews -->
<div class="supplement-card fade-in">
<img src="assets/cas.jpeg" alt="Cashews">
<h3>Cashews</h3>
<a href="https://www.amazon.in/s?k=cashew&crid=H31YIAKSXBQG&sprefix=cashew%2Caps%2C258&ref=nb_sb_noss_2"
target="_blank" class="buy-now-btn">Buy Now</a>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<p>© Royal Fitness 2024 - All Rights Reserved</p>
</footer>
</body>
</html>