forked from Conorc1000/fac6d1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathXercise.html
50 lines (45 loc) · 1.12 KB
/
Xercise.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
49
50
<html>
<head>
</head>
<body>
<h1>Xercise</h1>
<h2>London</h2>
<form>
<p>Type of class:<p>
<div>
<select>
<option>Yoga</option>
<option>Cardio</option>
<option>Aerobics</option>
<option>Pilates</option>
</select>
</div>
<div>
<p>Location:<p/>
<select>
<option>West</option>
<option>East</option>
<option>Central</option>
<option>North</option>
<option>South</option>
</select>
</div>
<div>
<p>Time:</p>
<select>
<option>Morning</option>
<option>Afternoon</option>
<option>Evening</option>
</select>
</div>
<div>
<p>Price:</p>
<select>
<option>Less than £10</option>
<option>£10-£20</option>
<option>More than £10</option>
</select>
</div>
</form>
</body>
</html>