-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathradio.html
68 lines (45 loc) · 1.14 KB
/
radio.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Radio buttons</title>
<meta name="robots" content="noindex, nofollow">
<style type="text/css">
body {
font-family: arial, sans-serif;
line-height: 2;
padding: 1% 5%;
}
</style>
</head>
<body>
<h1>Radio buttons</h1>
<form>
<fieldset>
<legend>1: Favourite type of donut (explicit label)</legend>
<input type="radio" name="flavor" id="choc" value="chocolate" />
<label for="choc">Chocolate</label><br/>
<input type="radio" name="flavor" id="cream" value="cream"/>
<label for="cream">Cream Filled</label><br/>
<input type="radio" name="flavor" id="honey" value="honey"/>
<label for="honey">Honey Glazed</label><br/>
</fieldset>
<fieldset>
<legend>2: Favourite sport (implicit label)</legend>
<label>
<input type="radio" name="sport" value="Running" /> Running
</label>
<br/>
<label>
<input type="radio" name="sport" value="Walking"/> Walking
</label>
<br/>
<label>
<input type="radio" name="sport" value="Cycling"/> Cycling
</label>
<br/>
</fieldset>
</form>
<a href="index.html">Back to overview page</a>
</body>
</html>