| Form | Select Multiple | Select | Textarea |
| Checkbox | Radio | Submit | Image |
| Reset | Options |
Top level tag is Form.
written like this: <form> with its closing tag </form>
Looks like this:
Creates a space to hold small bits of data.
Written like this: <input type="text" name="somename" size="40">
Looks like this:
Creates a space to hold text a block of text.
Written like this: <textarea rows="5" cols="40" name="commentbox"> with its closing tag </textarea>
Looks like this:
A mid level tag that creates a drop down menu. It is used with the option tag.
Written like this: <select name="choosingit"> with its closing tag </select>
Written like this:
<form>
<select name="choosingit">
<option value="achoice" >apples</option>
<option value="bchoice" >bananas</option>
<option value="cchoice" >coconuts</option>
</select>
</form>
Looks like this: