blob: 37ad821c7399fef8f38b1c48fa307c397b235181 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<!DOCTYPE html>
<html>
<head/>
<body>
<form>
<input type="radio" name="group1" id="two" value="2"/>
<label style="color: green" for="two">Should be no red</label><br>
<input type="radio" name="group1" id="three" value="3"/>
<label style="color: green" for="three">Should be no red</label>
</form>
</body>
</html>
|