1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
<html>
<head><title>tc_checkboxbuttons.html</title></head>
<body>
<form name="form1" method="post" action="/form_post">
Gender:<br />
M: <input type="checkbox" name="male" /><br />
F: <input type="checkbox" name="female" /><br />
Your one favorite color:<br />
Green: <input type="checkbox" name="green" /><br />
Green: <input type="checkbox" name="green" /><br />
Red: <input type="checkbox" name="red" /><br />
Blue: <input type="checkbox" name="blue" /><br />
Yellow: <input type="checkbox" name="yellow" /><br />
Brown: <input type="checkbox" name="brown" /><br />
Purple: <input type="checkbox" name="purple" /><br />
<input type="submit" value="Submit" />
</form>
</body>
</html>
|