|
"...Remember being a youngster, mom or dad
telling you "close the door"? Well the same applies to HTML ...."
|
|
HTML
|
- Complete HTML tag list
- Keep this tag list bookmarked for reference
- Join our busy webmaster forums!
|
|
Formatting Tags
|
|
<p></p>
|
Creates a paragraph
|
|
<p align="left"></p>
|
Sets a paragraph, either left, right, or center.
|
|
<br>
|
Creates a line break
|
|
<blockquote></blockquote>
|
Indents text from both sides
|
|
<dl></dl>
|
Creates a definition list
|
|
<dt>
|
Precedes each definition term
|
|
<dd>
|
Precedes each definition
|
|
<ol></ol>
|
Creates a numbered list
|
|
<ul></ul>
|
Creates a bulleted list
|
|
<li>
|
Precedes each list item, and adds the number or bullet
|
|
Back to the HTML menu.
|
|
|