-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathayurvedic_medicine.html
53 lines (48 loc) · 2.14 KB
/
ayurvedic_medicine.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ayurvedic Medicine - Royal Fitness</title>
<link rel="stylesheet" href="ayurvedic_medicine.css">
<!-- Main Content -->
<section class="ayurvedic-medicine">
<h2 class="heading">Explore <span>our Ayurvedic Medicines</span></h2>
<p>Discover our range of Ayurvedic medicines crafted to enhance your wellness naturally.</p>
<div class="medicine-list">
<!-- Medicine 1 -->
<div class="medicine-card">
<img src="assets/medicine1.jpg" alt="Ashwagandha">
<h3>Ashwagandha</h3>
<p>Ashwagandha is an adaptogen that helps reduce stress, improve energy levels, and support overall health.</p>
<a href="https://www.amazon.in/s?k=ashwagandha" class="buy-btn">Buy Now</a>
</div>
<!-- Medicine 2 -->
<div class="medicine-card">
<img src="assets/medicine2.jpg" alt="Triphala">
<h3>Triphala</h3>
<p>Triphala is known for its detoxifying properties and supports digestion and immune system health.</p>
<a href="https://www.amazon.in/s?k=triphala" class="buy-btn">Buy Now</a>
</div>
<!-- Medicine 3 -->
<div class="medicine-card">
<img src="assets/medicine3.jpg" alt="Brahmi">
<h3>Brahmi</h3>
<p>Brahmi promotes mental clarity, enhances cognitive function, and helps reduce anxiety.</p>
<a href="https://www.amazon.in/s?k=brahmi" class="buy-btn">Buy Now</a>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="social">
<a href="#"><i class='bx bxl-instagram-alt'></i></a>
<a href="#"><i class='bx bxl-facebook-square'></i></a>
<a href="#"><i class='bx bxl-linkedin-square'></i></a>
</div>
<p class="copyright">
© Royal Fitness 2024 - All Rights Reserved
</p>
</footer>
</body>
</html>