You are on page 1of 1

HTML FORMS

Tag Attribute Form View & Code


Control
Input Text Text box
<input type=”text” name size maxlength... />
Password Password text
box
<input type=”password” name size maxlength... />
Hidden Hidden data No view
<input type=”hidden” name... />
Radio Radio button
<input type=”radio” name... />
Checkbox Check button
<input type=”checkbox” name... />
Submit Submit form
button
<input type=”submit”... />
Reset Reset form
button
<input type=”reset”... />
Button Click
command
button <input type=”button” name onclick... />
Image Image click
button

<input type=”image” src onclick... />


File File select
control/button
<input type=”file” name />
Select Combo box /
List box

<select name size multiple></select>


Option List box
option

<option value></option>
Textarea Large text
box

<textarea name cols rows>description</textarea>

You might also like