View the source for this page.
This is our standard body for every web page.
Center the body of the page. We will end this in the footer.
If we are not centering a table or text, omit this tag.
<center>
Create a TABLE that is 650 pixels wide, with a 3 pixel thick border, and
a white background.
<table width="650" border="3" bgcolor="white" cellpadding="10">
Create a new ROW and a new CELL in that row.
<tr><td>
In this example we have a comment. We would add our information here.
<-- This is a comment. We'd have our content here. -->
End the CELL, ROW, and TABLE tags.
</td></tr></table>
|