Form Select Multiple Select Textarea
Checkbox Radio Submit Image
Reset Options    

Form

Top level tag is Form.
written like this: <form> with its closing tag </form>
Looks like this:

Invisible - lacks lower level tag

Input

Creates a space to hold small bits of data.
Written like this: <input type="text" name="somename" size="40">
Looks like this:

Textarea

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:

Select

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>

Example - using three options

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:

Radio

Checkbox

Image?

Select

Select Multiple

Reset

Options

Submit

???

???