forked from zyfer416/GYM-WEBSITE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathteacher3.html
47 lines (41 loc) · 1.74 KB
/
teacher3.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sankey Kumar Sharma</title>
<link rel="stylesheet" href="teacher.css">
</head>
<body>
<header class="fade-in"> <!-- Header fades in -->
<div class="teacher-container">
<!-- Teacher Name -->
<h1 class="teacher-name">Sankey Kumar Sharma</h1>
<!-- Teacher Image -->
<section class="teacher-profile fade-in"> <!-- Profile fades in -->
<div class="teacher-image">
<img src="assets/teacher3.jpg" alt="Yoga Teacher 1">
</div>
<!-- Teacher Bio -->
<div class="teacher-bio">
<p>Over 3 years of experience teaching Hatha and Vinyasa Yoga.
<p>Conducted yoga sessions for individuals and small groups focused on flexibility, stress relief, and building strength.</p>
<p>Guided meditation and breathwork practices for relaxation and mental clarity.</p>
<p>Organized wellness classes and introductory workshops for beginners.</p>
</div>
<div class="fade-in"> <!-- Book Now button fades in -->
</div>
<a href="https://gym-website-git-main-devashish-aswals-projects.vercel.app/booking_form.html" class="book-now-btn">Book Now →</a>
<script>
document.addEventListener("DOMContentLoaded", () => {
const elements = document.querySelectorAll(".fade-in");
// Trigger fade-in for all elements with the fade-in class
elements.forEach((el, index) => {
setTimeout(() => {
el.classList.add("visible");
}, index * 300); // Stagger animation by 300ms
});
});
</script>
</body>
</html>