HTML Cheat Sheet
Left Head Hyper Text Markup Language cheat sheet. Right Head
Basic Tags
Forms

You need to run a CGI script for a form to work.

< form > < /form >
Creates a form.

< select multiple name="NAME" size="?" > < /select >
Creates a scrolling menu. You can create a name and size sets the number of menu item visible before you teed to scroll.

< option >
Sets off each menu item.

< textarea name="NAME" cols="#" rows="#" > < /textarea >
Creates a text box that allows you to type in it.

< input type="checkbox" name="NAME" >
Creates a checkbox.
Body Attributes
Text Tags
Links & Formatting
Tables
Frames
Forms
< input type="radio" name="NAME" value="x" >
Creates a radio button.

< input type=text name="NAME" size="#"> >
Creates a single line text area.

< input type="submit" value="NAME" src="PICTURE%20SRC%20GOES%20HERE/index.html" >
Creates a submit button with an image as the button.

< input type="reset" >
Creates a reset button. You can also make this button have an image.

Home