-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathassisted_squats.html
53 lines (46 loc) · 1.33 KB
/
assisted_squats.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><link rel="icon" href="/images/favicon.ico" type="image/x-icon">
<meta charset="UTF-8" />
<link rel="stylesheet" href="style.css" />
<title>Assisted Squats</title>
</head>
<body>
<div class="video">
<video loop autoplay src="media/assisted_squats.mp4"></video>
</div>
<div class="levels">
<h2>Level 1</h2>
<h3>10 Assisted Squats, 2 Times</h3>
<div class="paragraph">
<div class="green_dot"></div>
<p>Easy? Move to Level 2.</p>
<br />
<div class="red_dot"></div>
<p>Hard? Repeat until easy.</p>
</div>
<h2>Level 2</h2>
<h3>20 Assisted Squats, 2 Times</h3>
<div class="paragraph">
<div class="green_dot"></div>
<p>Easy? Move to Level 3.</p>
<br />
<div class="red_dot"></div>
<p>Hard? Repeat until easy</p>
</div>
<h2>Level 3</h2>
<h3>30 Assisted Squats, 3 Times</h3>
<div class="paragraph">
<div class="green_dot"></div>
<p>
Easy? Congratulations! Move to:
<a href="half_squats.html">#half-squats</a><br />
</p>
<div class="red_dot"></div>
<p>
Hard? Repeat until easy. <a href="index.html">Return to #start</a>
</p>
</div>
</div>
</body>
</html>