-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (48 loc) · 1.62 KB
/
index.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
<!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>Membership Fee Calculator</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Calculate Your Membership Fee</h1>
<form id="membershipForm">
<fieldset>
<legend>Membership Details</legend>
<label for="attendingLeague">Attending League:
<select name="attendingLeague" id="attendingLeague">
<option value="Sprint">Sprint</option>
<option value="XC">XC</option>
<option value="Both">Both</option>
</select>
</label>
<br>
<label for="sprintFlown">
<input type="checkbox" name="sprintFlown" id="sprintFlown">
Flown Sprint before?
</label>
<br>
<label for="xcFlown">
<input type="checkbox" name="xcFlown" id="xcFlown">
Flown XC before?
</label>
<br>
<label for="firstSprint">
<input type="checkbox" name="firstSprint" id="firstSprint">
Signing up before first Sprint?
</label>
<br>
<label for="firstXc">
<input type="checkbox" name="firstXc" id="firstXc">
Signing up before first XC?
</label>
</fieldset>
<p id="membershipFee">
</p>
</form>
<script src="script.js"></script>
</body>
</html>