1 2 3 4 5

HTML Short List

Syntax

Description

<head>...</head>

The head tags contain special information which describes document features.

Example

<head><title>My Home Page</title></head>

Syntax

Description

<hr>

The horizontal rule tags draws a line which conforms to the width of the page.

Example

<hr>

Syntax

Description

<html>...</html>

The <html> tags define the extent of the page. Everything between these markers is understood by the browser to be part of the Web page.

Example

<html> ...the rest of the page </html>

Syntax

Description

<i>...</i>

The italics tags define the text displayed in italics.

Example

<i>(your name here)</i>

Syntax

Description

<img src= ... >

The image tags directs the browser to display an image. The src extension specifies its location. Other extensions can be employed to prescribe display size, alignment.

Example

<img src="logo.gif" border=0 height=220 width=220 align="top">

Syntax

Description

<lh>...</lh>

These tags define the text used as a header for a list.

Example

<lh>Top Ten Reasons I Should Learn Some HTML</lh>

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