-
Notifications
You must be signed in to change notification settings - Fork 0
/
instructions.html
60 lines (59 loc) · 2.24 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!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="icon" type="image/png" href="assets/logo.png">
<link rel="stylesheet" href="styleinst.css">
<style>@import url('https://fonts.googleapis.com/css2?family=Aleo:ital,wght@0,100..900;1,100..900&display=swap');
</style>
</head>
<body>
<header>
<div class="nav-hero">
<div class="logo">
<img src="assets/logo.png" alt="GoYoga Logo">
<h1>GoYoga</h1>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</nav>
</div>
</header>
<div class="container">
<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='index.html'">Back</button>
<button class="back-button" onclick="window.location.href='login.html'">Start Your Yoga Journey</button>
</div>
</main>
</div>
<footer>
<p> 2024 GoYoga - Embrace the Journey, Embrace the Yoga Lifestyle.</p>
</footer>
</body>
</html>