-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexercise.html
45 lines (45 loc) · 1.64 KB
/
exercise.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
<!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">
<link rel="stylesheet" href="sus.css">
<title>Exercise</title>
</head>
<body>
<h1>Race Registration!</h1>
<form action="dog">
<p>
<label for="first">First Name</label>
<input type="text" name="First name" id="first" required>
<label for="last">Last Name</label>
<input type="text" name="Last name" id="last" required>
</p>
<p>
<label for="race">Select a Race:</label><br>
<input type="radio" name="dog" id="5k" value="5k">
<label for="5k">Fun Run 5k</label><br>
<input type="radio" name="dog" id="Marathon" value="Marathon">
<label for="Marathon">Half Marathon</label><br>
<input type="radio" name="dog" id="Full" value="Full">
<label for="Full">Full Marathon</label>
</p>
<p>
<label for="email">Email</label>
<input type="email" name="Email" id="email" minlength ="4" maxlength="100" required>
<label for="password">Password</label>
<input type="password" name="password" id="password" minlength ="4" required>
</p>
<p><label for="Age">Select Age Group</label>
<select name="ge" id="Age">
<option value="" selected>under 18</option>
<option value="">18-30</option>
<option value="">31-50</option>
<option value="">51 and above</option>
</select>
</p>
<button>Register</button>
</form>
</body>
</html>