Basic HTML Tags





Text Style

Bold Text <b>Bold Text</b>
 
Italic Text <i>Italic Text</i>

 
Underlined Text <u>Underlined Text</u>

 

Large Heading

<h1>Large Heading</h1>

Small Heading
<h6>Small Heading</h6>

Monospace Text <code>Monospace Text</code>




Page Layout


Horizontal Line
<hr width=xx% align=left|right> Horizontal Line
 
Line
Break
Line <br> Break
 
Paragraph

Break

Paragraph <p> Break
 
Centered Text
<center>Centered Text</center>



Lists and Indents

  • Unordered
  • List
    • Unordered
    • Sub-list
<ul>
<li>Unordered
<li>List
<ul>
<li>Unordered
<li>Sub-list
</ul>
</ul>
 
  1. Ordered
  2. List
<ol>
<li>Ordered
<li>List
</ol>
 
Definition List Title
Indented Item
Another Indented Item
<dl>
<dt>Definition List Title (not always used)
<dd>Indented Item
<dd>Another Indented Item
</dl>



Links and Graphics

Informative Text
Image
<img src="file.gif" alt="Informative Text" align=left|right>
<br>Image
 
Linked Text <a href="file.html">Linked Text</a>