-
Notifications
You must be signed in to change notification settings - Fork 2
/
instructions.html
42 lines (42 loc) · 1.51 KB
/
instructions.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Instructions</title>
<link rel="stylesheet" href="styleinst.css">
</head>
<body>
<div class="container">
<header>
<h1>Instructions For Surya Namaskar</h1>
</header>
<main>
<div class="step">
<div class="step-number">1.</div>
<div class="step-info">
<h2>Accept camera access and wait for the webcam to load.</h2>
</div>
</div>
<div class="step">
<div class="step-number">2.</div>
<div class="step-info">
<h2>Perform the same pose as the image on the right, making sure to face the same direction.</h2>
</div>
</div>
<div class="step">
<div class="step-number">3.</div>
<div class="step-info">
<h2>Hold for 10 seconds. The timer will restart if you make a mistake. Make sure to complete all 12 poses. Enjoy!</h2>
</div>
</div>
<div class="back-button">
<button class="back-button" onclick="window.location.href='videotrial.html'">Start Your Yoga Journey</button>
</div>
</main>
<footer>
<p> 2024 GoYoga - Embrace the Journey, Embrace the Yoga Lifestyle.</p>
</footer>
</div>
</body>
</html>