Tables
<TABLE> - Begins the Table
<TR> - Begins the first Table Row
<TD> - Begins the cell containing the Table Data
</TD> - Ends the cell containing the Table Data
</TR> - Ends the first Table Row
</TABLE> - Ends the Table
Open up notepad and type out the code 4 your page again but with these small changes.
<HTML>
<HEAD>
<TITLE>My Cool Web Page</TITLE>
</HEAD>
<BODY BGCOLOR="#00FF00">
<CENTER><H1><FONT COLOR="#FF0000" FACE="HIPHOPDEMI,ELEPHANT">My Cool Web Page</FONT></H1></CENTER>
<HR>
<P> <FONT COLOR="#FF0000">Welcome to my cool web page which I made with the help of The EIRENET HTML tutorial</FONT>.</P>
<P>Check out my favourite site, <A HREF="http://www.ireland.com"><IMG SRC="irishtimes.gif"></A></P>
<TABLE>
<TR>
<TD><FONT SIZE=3
COLOR=#FF0000 FACE="Arial">Here is my table</TD>
<TD><FONT SIZE=3
COLOR=#00FF00 FACE="Arial">This is the second cell of the same
table</TD>
</TR>
</BODY>
</HTML>
Notice that this time we are also using a different way of determining the size of the text. These tags (in red) are
used much the same as the font face and colour tags.
The size and colour of the table can also be set.
<TABLE>
<TR>
<TD WIDTH="76" HEIGHT="76" bgcolor="#aada22"><FONT SIZE=3 COLOR=#FF0000 FACE="Arial">Here is my table</TD>
<TD><FONT SIZE=3
COLOR=#00FF00 FACE="Arial">This is the second cell of the same
table</TD>
</TR>