HTML Cheat Sheet
Left Head Hyper Text Markup Language cheat sheet. Right Head
Basic Tags
Links & Formatting



< a href="URL/index.html" > < /a >
Makes the text or image that is in the tags a hyperlink.

< a href="mailto:EMAIL" > < /a >
Makes the text or image that is in the tags a hyperlink to a persons E-Mail address.

< a name="NAME" > < /a >
Creates a target location in a document.

< a href="#NAME" > < /a >
Links to the A NAME part of the document.

< p > < /p >
Creates a new paragraph.
Body Attributes
Text Tags
Links & Formatting
Tables
Frames
Forms

< p align="?" > < /p >
Aligns the paragraph to the right, left, or centered.

< br / >
Similar to the Enter button on your keyboard. If have Internet Explorer, you can click on View then Source and you will see that I have used many of them.

< blockquote > < /blockquote >
Indents text on both sides.

< dl > < /dl >
Creates a definition list.

< dt >
Precedes each definition term.

< dd >
Precedes each definition.

< ol > < /ol >
Creates a numbered list.

< li > < /li >
Precedes each list item, and adds a number.

< ul > < /ul >
Creates a bulleted list.

< div align="?" > < /div >
Used to align things left, right, or centered on the page. Can also be used in CSS stylesheets.

Home