-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexercise-options.html
48 lines (43 loc) · 1.38 KB
/
exercise-options.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
<h1></h1>
<p> </p>
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="css/exerciseoptions.css">
<title>Exercise Options</title>
</head>
<body>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="chart.html">Nutrition</a></li>
<li><a href="mental-health.html">Mental Health</a></li>
<li><a href="exercise-options.html">Exercise Options</a>
<ul>
<li><a href="exercises.html">Exercises</a></li>
<li><a href="exercises-goal-game.html">Goal & Game</a></li>
<li><a href="exercise-challenge.html">Challenge</a></li>
</ul>
</li>
<li><a href="profile.html">Profile</a></li>
</ul>
</nav>
<div class="wrapper">
<ul class="breadcrumb">
<li><a href="index.html">Home</a></li>
<li>Exercise Options</li>
</ul>
<ul class="breadcrumb">
<li><a href="index.html">Home</a></li>
<li>Exercise Options</li>
</ul>
<div class="options">
<a href="exercises.html" class="page-buttons">Exercises</a>
<a href="exercises-goal-game.html" class="page-buttons">Exercise Goal & Game</a>
<a href="exercise-challenge.html" class="page-buttons">Exercise Challenge</a>
<!-- <a href="/" class="previous-page"><b>‹</b></a> -->
</div>
<a href="javascript:history.go(-1)" class="previous-page"><b>‹</b></a>
</div>
</body>
</html>