| <body> tag options |
| background= |
Specifies an image to tile as the pageÕs background. |
<body background=marble.gif> |
(marble.gif in background) |
2 |
| bgcolor= |
Sets the pageÕs background colour. |
<body bgcolor=#ff0000> |
(Bright red background) |
2 |
| bgproperties= |
Lets you fix the pageÕs background like a ÔwatermarkÕ. |
<body bgproperties=fixed> |
Non-scrolling background bitmap |
MS |
| text= |
Specifies the colour for text on this page. |
<body text=#000000> |
Black text. |
2 |
| link= |
Specifies the colour for hypertext links on this page. |
<body link=#ffff00> |
Bright yellow links. |
2 |
| alink= |
Specifies the colour for anchor hypertext links on this page. |
<body link=#808080> |
Middle grey links. |
2 |
| vlink= |
Specifies the colour for seen hypertext links on this page. |
<body link=#0080ff> |
Bright blue links. |
2 |
| <img> tag options |
| src= |
Specifies which image to show. |
<img src=bullet.gif> |
 |
1 |
| alt= |
Text to show if the image canÕt be shown. |
<img src=bullet.gif alt=ÓTextÓ> |
 |
1 |
| align= |
Image alignment: left, center, right, top, middle, bottom, texttop, absmiddle,
baseline, absbottom. |
-- <img src=bullet.gif align=top> -- <img src=bullet.gif
align=bottom> -- |
-- -- -- |
2 |
| hspace= |
Horizontal space to leave for the image. |
L<img src=bullet.gif hspace=30>R |
L R |
2 |
| vspace= |
Vertical space to leave for the image. |
Left <img src=bullet.gif vspace=20> Right |
Left Right |
2 |
| border= |
Draws an optional border around the graphic. |
<img src=bullet.gif border=2> |
 |
2 |
| dynsrc= |
Specifies an animation to play; uses src if canÕt play animation. |
<img dynsrc=test.avi start=mouseover loop=infinite src=bul-
let.gif> |
 |
MS |
| start= |
Specifies when to start a dynsrc animation. |
See dynsrc. |
See dynsrc. |
MS |
| loop= |
In a dynsrc animation, specifies how many times to play it (or Ôinfi-
niteÕ). |
See dynsrc. |
See dynsrc. |
MS |
| width= |
Tells the browser how wide the image is. |
<img width=32 height=32> |
No visual effect. |
2 |
| height= |
Tells the browser how high the image is. |
<img width=32 height=32> |
No visual effect. |
2 |
| <td, tr, th> tag options |
| bgcolor= |
Sets the background colour for a single cell in a table. |
<td bgcolor=#00ff00> |
This cell has a green background. |
MS |
| colspan= |
Makes a wide cell in a table. |
<td colspan=5> (this cell is 2 cells wide) |
3 |
| rowspan= |
Makes a tall cell in a table. |
<td rowspan=2> |
This cell is 2 rows high (the next row is empty). |
3 |
| align= |
Controls horizontal text alignment; values are left, center
em>, and right. |
<td align=right> At<br>The<br>Right
td>
| At The Right. |
3 |
| valign= |
Sets the background colour for a single cell in a table. |
<td valign=bottom> Bottom |
Bottom |
3 |
| width= |
Cell size specifier - can be in pixels or percent. |
<td width=20> |
A 20 pixel wide cell |
3 |
| height= |
Cell size specifier - can be in pixels or percent. |
<td height=20> |
A 20 pixel high cell |
3 |