forked from eraltafs/Fit-Buddy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
goal.html
43 lines (37 loc) · 1.21 KB
/
goal.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
<!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/goal.css">
</head>
<body>
<div id="nav">
</div>
<div id="goal">
<h2>What is your weekly goal?</h2>
<p>Let's break down your overall health goal into a weekly one you can maintain. Slow-and-steady is best!</p>
<div id="go">
<div id="div1">
<p>Lose 0.5 pounds per week</p>
</div>
<div id="div2">
<p>Lose 1 pound per week (Recommended)</p>
</div>
<div id="div3">
<p>Lose 1.5 pounds per week</p>
</div>
<div id="div4">
<p>Lose 2 pounds per week</p>
</div>
</div>
<div id="back">
<a href="height_page.html"><button>BACK</button></a>
<a href="username_page.html"> <button>NEXT</button></a>
</div>
</div>
</body>
</html>
<script type="module" src="./scripts/goal.js"></script>