-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathalignment_steps.html
More file actions
52 lines (42 loc) · 1.86 KB
/
alignment_steps.html
File metadata and controls
52 lines (42 loc) · 1.86 KB
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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport"
content="width=device-width, initial-scale=0.66667, viewport-fit=cover">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<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=Inter" rel="stylesheet">
<link rel="stylesheet" href="./css/style.css">
<script src="./js/app_components.js"></script>
<title>alignment</title>
</head>
<body>
<div class="large_font" id="aligment_steps_title">Let's get everything ready to exercise.</div>
<div class="flex_container_alignment_step1">
<img src="img/person_stretching_img.png" id="img_steps" width="134px" height="134px">
<div class="small_font" id="text_steps">Face the camera</div>
</div>
<div class="flex_container_alignment_steps">
<img src="img/sun_img.png" id="img_steps" width="134px" height="134px">
<div class="small_font" id="text_steps">Face the camera</div>
</div>
<div class="flex_container_alignment_steps">
<img src="img/camera_img.png" id="img_steps" width="134px" height="134px">
<div class="small_font" id="text_steps">Face the camera</div>
</div>
<div class="flex_container_alignment_steps">
<img src="img/chair_img.png" id="img_steps" width="134px" height="134px">
<div class="small_font" id="text_steps">Face the camera</div>
</div>
<div class="flex_container_buttons">
<div class="small_font" id="cancel_button" onclick="homePage()">
<p id="font_adjust">Cancel</p>
</div>
<button class="small_font" id="next_page_button" onclick="alignmentStep2()">
<p id="font_adjust">Next</p>
</button>
</div>
</body>
</html>