1 2 3 4 5

HTML Short List

Syntax

Description

<title>...</title>

The title tags define the enclosed text as a title for the page that is displayed in the title bar above the page. (The title is not to be confused with the file name.)

Example

<title>My Home Page</title>

Syntax

Description

<tr>...</tr>

The <tr> tags define the enclosed text as a single row for a table.

Example

<table>
<th>Here is the table heading</th>
<TR>
<td>This is the text for the first column</td>
<td>This is the text for the second column</td>
<td>This is the text for the third column</td>
</tr>
</table>

Syntax

Description

<tt>...</tt>

The teletype tags define the enclosed text to be formatted and displayed using a nonproportional typeface.

Example

<tt> Here is a some text that will be formatted using Courier or some other nonproportional font.</tt>

Syntax

Description

<ul>...</ul>

The <ul> tags define the enclosed text to be treated as an unordered or bullet list.

Example

<ul>
<li>This is the first item</li>
<li>This is the second item</li>
<li>This is the last item</li>
</ul>

Abernethy and Allen, 2003
Furman University
Last Modified: 1/03