x
 
<html>
<head>
<title>HTML tutorial</title>
</head> 
<body>
<h3>Complete this form and submit it:</h3>
<form action="../../../img/tutorials/form_ex1.php" method="get" name="form">
Name:<br />
<fieldset style="background-color:#bbb">
    <input type="text" name="name" value="" />
</fieldset>
Which colors do you like:<br />
<fieldset style="background-color:#bbb">
    <input type="checkbox" name="red" value="red" checked="checked" /><span style="color:red">red</span>
    <input type="checkbox" name="green" value="green" /><span style="color:green">green</span>
    <input type="checkbox" name="blue" value="blue" /><span style="color:blue">blue</span>
    <input type="checkbox" name="lime" value="yellow" /><span style="color:lime">lime</span>
    <input type="checkbox" name="fuchsia" value="fuchsia" /><span style="color:fuchsia">fuchsia(!?)</span>
</fieldset><br />
<input type="submit" name="form_submit" value="Send" />
<input type="reset" value="Reset" />
</form>
</body>
</html>