HTML Tutorial

Link

<a href="URLHERE">TEXT</a>

Link: Change URLHERE to the address of the page you want to link to.
Open Page In New Window: Add target="_blank" after the last quotation mark.

Image

<img alt="TEXT" src="URLHERE" height="100" width="150" border="2">

Image: Change URLHERE to the address of the image.
Width: Change 150 to another number.
Height: Change 100 to another number.
Border Width: Change 2 to another number.
Alt Text: Change TEXT to whatever you want the image to say when you hover over it.

Linked Image

<a href="SITEURL"><img alt="TEXT" src="IMAGEURL" height="100" width="150" border="2"></a>

Link: Change SITEURL to the address of the page you want to link to.
Image: Change IMAGEURL to the link the the image.
Width: Change 150 to another number.
Height: Change 100 to another number.
Border Width: Change 2 to another number.
Alt Text: Change TEXT to whatever you want the image to say when you hover over it.
Open Page In New Window: Add target="_blank" after the last quotation mark in the "a" tag.

Text Color, Font, and Size

<font color="RED" face="ARIAL" size="3">TEXT</font>

Color: Change RED to another color.
Font: Change ARIAL to a different font.
Size: Change 3 to another number from 1 to 7.

Bold

<b>TEXT</b>

Underline

<u>TEXT</u>

Italic

<i>TEXT</i>

Strikethrough

<del>TEXT</del>
Block Quote
<blockquote>TEXT</blockquote>
Small Text
<small>TEXT</small>

Heading 1

<h1>TEXT</h1>

Heading 2

<h2>TEXT</h2>

Heading 3

<h3>TEXT</h3>

Heading 4

<h4>TEXT</h4>
Heading 5
<h5>TEXT</h5>
Heading 6
<h6>TEXT</h6>

Align Left

<p align="left">TEXT</p>

Align Center

<p align="center">TEXT</p>

Align Right

<p align="right">TEXT</p>

Line Break

<br>
<ul>
    <li>One</li>
    <li>Two</li>
</ul>
  1. Numbered List
<ol>
    <li>One</li>
    <li>Two</li>
</ol>

Marquee

<font color="PURPLE" face="ARIAL" size="3"><marquee behavior="alternate" width="700">TEXT HERE</marquee></font>

Color: Change PURPLE to another color.
Font: Change ARIAL to a different font.
Size: Change 3 to another number from 1 to 7.
Behavior: Change to alternate to scroll or slide.
Width: Change 700 to another number.

Horizontal Line

<hr width="80%" size="2" color="RED">

Width: Change 80% to a number between 1 to 100.
Height: Change 2 to another number.
Color: Change RED to a different color.

Background

<body background="URLHERE" bgcolor="YELLOW">

Image: Change URLHERE to the address of the background image.
Color: Change LIME to another color.
Fixed: Add bgproperties="fixed" after the last quotation mark.

Table

<table border="1" bordercolor="BLACK" height="100" width="150">
    <tr>
        <td>TEXT</td>
    </tr>
</table>

Border Width: Change 1 to another number.
Border Color: Change BLACK to another color.
Width: Change 150 to another number.
Height: Change 100 to another number.

Column

<td>TEXT</td>

Row

<tr>
    <td>TEXT</td>
</tr>