-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexercises.php
60 lines (55 loc) · 2.59 KB
/
exercises.php
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
53
54
55
56
57
58
59
60
<?php
require "header.php";
?>
<head>
<title>Exercises</title>
<link rel="stylesheet" href="stylesheet.css">
</head>
<body>
<h1 class="header">Exercise by Body Part</h1>
<section class="features">
<figure>
<a href="exercises/ankle.php"><img src="../images/ankles.jpg" alt="ankle exercise"></a>
<figcaption class="overlay"><a href="exercises/ankle.php">Ankle and Foot Exercises</a></figcaption>
</figure>
<figure>
<a href="exercises/back.php"><img src="../images/back.jpg" alt="back exercise"></a>
<figcaption class="overlay"><a href="exercises/back.php">Back Exercises </a></li></figcaption>
</figure>
<figure>
<a href="exercises/elbow.php"><img src="../images/elbow.jpg" alt="elbow exercises"></a>
<figcaption class="overlay"><a href="exercises/elbow.php">Elbow and Forearm Exercises</a></figcaption>
</figure>
</section>
<section class="features">
<figure>
<a href="exercises/hip.php"><img src="../images/stretchingback.jpg" alt="hip exercises"></a>
<figcaption class="overlay"><a href="exercises/hip.php">Hip and Thigh Exercises</a></figcaption>
</figure>
<figure>
<a href="exercises/knee.php"><img src="../images/knee.jpg" alt="knee exercises"></a>
<figcaption class="overlay"><a href="exercises/knee.php">Knee and Lower Leg Exercies</a></li></figcaption>
</figure>
<figure>
<a href="exercises/neck.php"><img src="../images/neck.jpg" alt="neck exercises"></a>
<figcaption class="overlay"><a href="exercises/neck.php">Head and Neck Exercises</a></figcaption>
</figure>
</section>
<section class="features">
<figure>
<a href="exercises/shoulder.php"><img src="../images/shoulder.jpg" alt="shoulder exercises"></a>
<figcaption class="overlay"><a href="exercises/shoulder.php">Shoulder and Upper Arm Exercises</a></figcaption>
</figure>
<figure>
<a href="exercises/wrist.php"><img src="../images/hands.jpg" alt="wrist exercises"></a>
<figcaption class="overlay"><a href="exercises/wrist.php">Wrist and Hand Exercises</a></figcaption>
</figure>
<figure>
<a href="exercises/wholebody.php"><img src="../images/stretchingback.jpg" alt="whole body exercies"></a>
<figcaption class="overlay"><a href="exercises/wholebody.php">Whole Body Exercises</a></li></figcaption>
</figure>
</section>
<footer>
<p> </p>
</footer>
</body>