-
Notifications
You must be signed in to change notification settings - Fork 0
/
yoga.html
48 lines (47 loc) · 1.63 KB
/
yoga.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
<!DOCTYPE html>
<html lang="en" style="width: 400px; height: 450px">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CareU</title>
<link rel="stylesheet" href="./css/style.css" />
<link rel="stylesheet" href="./css/yoga.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Quicksand:wght@300&display=swap"
rel="stylesheet"
/>
<script src="js/yoga.js"></script>
</head>
<body>
<div class="container">
<div class="container__buttons">
<div class="buttons__icons">
<a href="break.html"><img src="icons/quote.png" /></a>
</div>
<div class="buttons__icons">
<a href="music.html"><img src="icons/music.png" /></a>
</div>
<div class="buttons__icons">
<a href="tasks.html"><img src="icons/todo.png" /></a>
</div>
<div class="buttons__icons">
<a href="popup.html"><img src="icons/yoga.png" /></a>
</div>
</div>
<div class="container__welcome">
<h1>BREAK</h1>
<div>
<p class="exerciseTitle">Do the following pose for:</p>
<p id="yogaTimer" class="exerciseTimerText">60</p>
<div class="exercisePose">
<img src="image/1.png" id="yogaPose" />
</div>
<div class="resetExerciseButton">
<button id="resetYogaPose">Different Pose</button>
</div>
</div>
</div>
</body>
</html>