Forms Elements and References

Here are all HTML4 form elements:

<input type="text" />

<input type="password" />

<input type="checkbox" />
 
<input type="radio" />

<textarea rows="10" cols="10"></textarea>

<select>
	<option value="first">1</option>
	<option value="second">2</option>
	<option value="third">3</option>
</select>

<input type="file" />

<input type="image" />

<input type="button" />

<input type="hidden" />

<input type="submit" />

<input type="reset" />

Forms (w3.org)
http://www.w3.org/TR/html4/interact/forms.html

HTML5 new forms elements
http://www.w3schools.com/html5/html5_form_elements.asp