Tuesday, 12 October 2010

IDAT 102

Check box

A check box form is a form where you tick a box they are most commonly used for surveys and questionnaires. With a checkbox you can make a multiple selection of ticks unlike the radio buttons where you can pick 1 or the other. But checkboxes on websites will be used for the websites own personal use to see if they can improve there websites in anyway by giving them a questionnaire with checkboxes to tick.
When creating a check box like the one below i used a html script which is:
<form>
<input type="checkbox" name="vehicle" value"bike"/>I have a bike<br/>
<input type="checkbox" name="vehicle" value"car"/>I have a car<br/>
This is repeated for the car checkbox, the script is straight forward the input type is a checkbox the name is a vehicle. The value is the bike or car and this is how you produce a check box.

 ^This is an example of a check box^

No comments:

Post a Comment