-
Notifications
You must be signed in to change notification settings - Fork 30
/
radios.html
59 lines (58 loc) · 1.55 KB
/
radios.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
<form action="demo_form.asp">
<label>First</label>
<input type="radio" id="first" />
<label>Second</label>
<input type="radio" id="second" />
<input type="submit" />
</form>
<form action="demo_form1.asp">
<label>Third</label>
<input type="radio" id="third" />
<label>Forth</label>
<input type="radio" id="forth" />
<input type="submit" />
</form>
<form action="demo_form2.asp">
<label>Fifth</label>
<input type="radio" id="fifth" />
<label>Sixth</label>
<input type="radio" id="sixth" />
<input type="submit" />
</form>
<form action="demo_form3.asp">
<label>Seventh</label>
<input type="radio" id="seventh" />
<label>Other</label>
<input type="radio" id="other" />
<input type="submit" />
</form>
<!--
<form action="demo_form.asp">
<label for="first">First</label>
<input type="radio" id="first" />
<label for="" for="second">Second</label>
<input type="radio" id="second" />
<input type="submit" />
</form>
<form action="demo_form.asp">
<label for="third">Third</label>
<input type="radio" id="third" />
<label for="forth">Forth</label>
<input type="radio" id="forth" />
<input type="submit" />
</form>
<form action="demo_form.asp">
<label for="fifth">Fifth</label>
<input type="radio" id="fifth" />
<label for="sixth">Sixth</label>
<input type="radio" id="sixth" />
<input type="submit" />
</form>
<form action="demo_form.asp">
<label for="seventh">Seventh</label>
<input type="radio" id="seventh" />
<label for="other">Other</label>
<input type="radio" id="other" />
<input type="submit">
</form>
-->