-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathyoga_teacher.html
85 lines (77 loc) · 3.43 KB
/
yoga_teacher.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="yoga_teacher.css">
<link href="https://unpkg.com/[email protected]/css/boxicons.min.css" rel="stylesheet">
<title>Yoga Teacher - Royal Fitness</title>
</head>
<body>
<!-- Header -->
<header>
<a href="#" class="logo">Royal <span>Fitness</span></a>
<div class="bx bx-menu" id="menu-icon"></div>
<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" class="active">Yoga Teacher</a></li>
</ul>
<div class="top-btn">
<a href="index.html#plans" class="nav-btn">Join Us</a>
</div>
</header>
<!-- Main Content -->
<section class="yoga-teacher fade-in">
<div class="content">
<h2 class="heading">Meet Our <span>Yoga Teachers</span></h2>
<p>Our expert yoga teachers are dedicated to guiding you on your journey to physical and mental well-being. With years of experience and certifications in various yoga styles, they ensure every session is safe, enjoyable, and transformative.</p>
</div>
<div class="teacher-list fade-in">
<!-- Teacher 1 -->
<div class="teacher-card">
<a href="teacher1.html" class="teacher-box">
<img src="Assets/teacher1.jpg" alt="Yoga Teacher 1">
<h3>Sadhushri</h3>
<p>Specializes in Hatha Yoga and meditation techniques to help you find inner peace.</p>
<button class="join-now-btn" data-teacher="Sadhushri">Join Now</button>
</a>
</div>
<!-- Teacher 2 -->
<div class="teacher-card">
<a href="teacher2.html" class="teacher-box">
<img src="Assets/teacher2.jpg" alt="Yoga Teacher 2">
<h3>Yogi Ankit Ji</h3>
<p>Certified in Vinyasa Flow Yoga, creating dynamic and engaging sequences for all levels.</p>
<button class="join-now-btn" data-teacher="Yogi Ankit Ji">Join Now</button>
</a>
</div>
<!-- Teacher 3 -->
<div class="teacher-card">
<a href="teacher3.html" class="teacher-box">
<img src="Assets/teacher3.jpg" alt="Yoga Teacher 3">
<h3>Sankey Kumar Sharma</h3>
<p>Focused on therapeutic yoga for stress relief and flexibility improvement.</p>
<button class="join-now-btn" data-teacher="Sankey Kumar Sharma">Join Now</button>
</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>
<script src="yoga_teacher.js"></script>
</body>
</html>