-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAustralian Example Form.html
More file actions
34 lines (29 loc) · 927 Bytes
/
Australian Example Form.html
File metadata and controls
34 lines (29 loc) · 927 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Australian Example Form</title>
</head>
<body>
<form action="/submit_form" method="post">
<p>
<label for="stateSelect">Choose a state:</label>
<select id="stateSelect" name="state">
<option value="NSW">New South Wales</option>
<option value="QLD">Queensland</option>
<option value="SA">South Australia</option>
<option value="TAS">Tasmania</option>
<option value="VIC">Victoria</option>
<option value="WA">Western Australia</option>
</select>
</p>
<p>Continent:
<input type="radio" id="oceania" name="continent" value="Oceania" checked>
<label for="oceania">Oceania</label>
<input type="radio" id="other" name="continent" value="Other">
<label for="other">Other</label>
</p>
<input type="submit" value="Submit">
</form>
</body>
</html>