forked from eraltafs/Fit-Buddy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
activity.html
47 lines (41 loc) · 1.52 KB
/
activity.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Create Your free Account | Fit Buddies</title>
<link rel="stylesheet" href="./styles/activity.css">
</head>
<body>
<div id="nav">
</div>
<div id="weight">
<h2>What is your baseline activity level?</h2>
<p>Not including workouts-we count that separately</p>
<div id="activity">
<div id="div1">
<h3>Not Very Active</h3>
<p>Spend most of the day sitting (e.g., bankteller, desk job)</p>
</div>
<div id="div2">
<h3>Lightly Active</h3>
<p>Spend the good part of the day on your feet (e.g., Teacher, Salesperson)</p>
</div>
<div id="div3">
<h3>Active</h3>
<p>Spend a good part of the day doing some physical activity (e.g., food server,postal carrier) </p>
</div>
<div id="div4">
<h3>Very Active</h3>
<p>Spend a good part of the day doing heavy physical activity (e.g., bike messenger, carpenter)</p>
</div>
</div>
<div id="back">
<a href="weight_page.html"><button>BACK</button></a>
<a href="calorie.html"> <button>NEXT</button></a>
</div>
</div>
</body>
</html>
<script type="module" src="./scripts/activity.js"></script>