About this Resource

[?] Compare your HTML in the text box with the model on the right. When you have finished, close this window to return to the 'web forms' page.

 

<html>
<head>
<link href="../generic/main.css" rel="stylesheet" type="text/css">
<title>Form options</title>
</head>
<body>
<div class="ques">
<form name="form1" action="" method="post">
<p><label for="name">1. What is your name?</label></p>
<p><input name="namebox" id="name" type="text" size="30" /></p>
<p><label for="email">2. What is your email address?</label></p>
<p><input name="emailbox" id="email" type="text" size="30" maxlength="50" /></p>
<p><label for="age">3. How old are you?</label></p>
<p><input name="agebox" id="age" type="text" size="5" maxlength="3" /> years</p>
<p>4. How often do you use the internet? </p>
<p><input type="radio" value="everyday" name="often" />
everyday<br />
<input type="radio" value="2-3 days per week" name="often" />
2-3 days per week<br>
<input type="radio" value="2-3 days per week" name="often" />
less than 2-3 days per week </p>
<p>5. Which of the following do you regularly use the internet for?<br />
(You can select as many options as you like. If you would like to remove a selection you have made, select it again to deselect it).</p>
<p><input type="Check box" value="Email" name="email" />E mail<br />
<input type="Check box" value="Finding info" name="FI" />Finding information about things to buy<br />
<input type="Check box" value="Purchases" name="purchases" />Making purchases<br>
<input name="none" type="Check box" value="none" checked />None</p>
<p>6. How would you rate your skill as an internet user?</p>
<p><select name="levelSelect" size="5" multiple >
<option selected="selected">Select an option</option>
<option>-------------------</option>
<option value="VA">Very advanced</option>
<option value="Ad">Advanced</option>
<option value="Av">Average</option>
<option value="B">Basic</option>
</select></p>
<p><label for="advantages">6. What, in your opinion, are the three main advantages of
the internet?</label></p>
<textarea name="advantages"id="advantages" rows="7" cols="60"></textarea>
<p><input type="button" name="Submit" value="Submit">
<input type="reset" name="Reset" value="Reset"> </p>
</form></div>
</body>
</html>