1

Boldface

<B> … </B>

2

Italic

<I> … </I>

3

Emphasis

<EM> … </EM>

4

Blink

<BLINK> … </BLINK>

4

Big

<BIG> … </BIG>

4

Small

<SMALL> … </SMALL>

5

Address

<ADDRESS> … </ADDRESS>

6

Headings (1-6)

<H1>…</H1>

7

Line Break

<BR>

8

Font size (1-7)

<FONT SIZE=#>…</FONT>

9

Paragraph Break

<P>

10

Horizontal Rule

<HR>

11

Indent

<DD>

12

Blockquote

<BLOCKQUOTE>…</BLOCKQUOTE>

13

Ordered List (Numbered List)

<OL>…</OL>

14

Unordered List (Bulleted List)

<UL>…</UL>

15

List Item (Used with Ordered and Unordered Lists

<LI>

16

Definition List

<DL>…</DL>

17

Definition Term

<DT>

18

Definition Description

<DD>

19

Background Color

<BGCOLOR=”RRGGBB”>

20

Text Color

TEXT=”RRGGBB”>

21

Unvisited Link Color

<LINK=”RRGGBB”>

22

Visited Link Color

<VLINK=”RRGGBB”>

23

Pointer

<A HREF=”#xxxx”>anchor text</A>

<A NAME=”xxxx”>

23

Link (see Note)

<A HREF=”filename”>anchor text</A>

24

Mail to

<A HREF=mailto:e-mail address>anchor text</A>

 

25

Insert a graphics file (see Note)

<IMG SRC=”graphics filename” HEIGHT=# WIDTH=#>

# is expressed in pixels

 

26

Change the image alignment

<IMG SRC=”graphics filename” ALIGN = LEFT>

You can align RIGHT, LEFT, CENTER, TOP, MIDDLE, TOP

27

Use image as background

<BODY BACKGROUND=”graphics filename”>

28

Change amount of space around the image

<IMG SRC=”graphics filename” VSPACE=# HSPACE=#>

# is expressed in pixels

29

Comment

<!--comment-->

30

Define a table

<TABLE></TABLE>

31

Define table with border

<TABLE BORDER> </TABLE>

32

Define table with specific border size

<TABLE BORDER=#> </TABLE>

33

Specify desired table width

<TABLE WIDTH=% > </TABLE>

34

Define table row

<TR> </TR>

35

Define table cell

<TD> </TD>

36

Define table header

<TH> </TH>

37

Horizontally aligns data in the cell

<TD ALIGN=LEFT/CENTER/RIGHT>

38

Vertically aligns data in the cell

<TD VALIGN=TOP/MIDDLE/BOTTOM

39

Specify number of columns for cell to span

<TD COLSPAN=#>

40

Specify number of rows for cell to span

<TD ROWSPAN=#>

41

Define the Web page as a frameset document

<FRAMESET>…</FRAMESET>

42

Define document for frame

<FRAME SRC=”filename”>

43

Define rows

ROWS=

44

Define columns

COLS=

45

Name a frame

NAME=”xxxx”>

46

Target a frame

TARGET=”xxxx”

47

Target a new browser window

TARGET=”_top”>

 

Note: Anytime you are using a filename in a HTML tag, the file must be in the same folder as your webpage or you must put the full path of the file in the tag.