Tables and Frames
Home

Alignment

BG Color/Image

Forms

Graphics

Javascript(Pop-Ups)

Links

Paragraphs

Tables/Frames

Text Boxes

Text Effects

Text Properties

Make A Simple Table
1.Type bracket (>) TABLE end bracket (>).

2.Type bracket (<) TR end bracket (>).

3. Type bracket (<) TD end bracket (>). Type the contents of the cell. Type bracket (<) /TD end bracket (>).

4. Repeat step 3 for each cell in the first row. Type bracket (<) /TR end bracket (>).

5. Repeat steps 2-3 for each row. To change font, font color, or font size, see Text Properties. To change background color, see BG Color/Images. To make a border, within the (TABLE) tag, type BORDER=BORDER RULES=ALL.

Example ( ( )s instead of < >s ):

(TABLE BORDER=BORDER RULES=ALL)(TR)
(TD BGCOLOR=RED)(B)Horse Name(/TD)
(TD BGCOLOR=Blue)(B)Color(/TD)
(TD BGCOLOR=Purple)(B)Breed(/TD)
(TD BGCOLOR=Yellow)(B)Gender(/TD)
(TD BGCOLOR=Green)(B)Use(/TD)(/TR)(TR)
(TD BGCOLOR=RED)Wonder(/TD)
(TD BGCOLOR=Blue)Chestnut (/TD)
(TD BGCOLOR=Purple)Thoroughbred (/TD)
(TD BGCOLOR=Yellow)Mare (/TD)
(TD BGCOLOR=Green)Racing (/TD)(/TR)(TR)
(TD BGCOLOR=RED)Black Night(/TD)
(TD BGCOLOR=Blue)Black(/TD)
(TD BGCOLOR=Purple)Quarter Horse (/TD)
(TD BGCOLOR=Yellow)Colt(/TD)
(TD BGCOLOR=Green)Dressage/Cross Country(/TD)(/TABLE)

How This One Would Look:

Horse Name Color Breed Gender Use
Wonder Chestnut Thoroughbred Mare Racing
Black Night Black Quarter Horse Colt Dressage/Cross Country

Make a Simple Frame

Type bracket (<) FRAMESET after the (/HEAD) tag. Type ROWS="a,*, b" where a is the height of the first row in either pixels or percentages and b is the height of the second row. Continue adding for each row. End bracket (>). Type bracket (<) FRAME NAME="name" where name is the name of the window. Type SRC="content.html" where content.html is the URL of the page you wish to display there. Repeat for each row. Type bracket (<) /FRAMESET end bracket (>).

Example: (Frameset rows="*,100") (body)(frame name="mainpage" src=http://www.angelfire.com/games3/harrypotter1/Hogwarts2.html#title) (frame name="newestfeatures" src=http://www.angelfire.com/games3/harrypotter1/NewestFeatures.html#title)

Click Here to see what this one looks like.