Tables in HTML Documents
We are going to create a two row, two column table like the one below, and place links to other web pages in the table. Start with a basic HTML document.
<HTML>
<HEAD>
<TITLE> My Table Page</TITLE>
< BODY >
<TABLE>
<TR>
<TD><A HREF="http://www.westark.edu">Westark College Page</a>
<TD><A HREF="http://www.microsoft.com">Microsoft Home Page</a>
</TR>
<TR>
<TD><A HREF="http://www.cei.net/~jphelps">Jim Phelps' Home Page</a>
<TD><A HREF="http://www.netscape.com">Netscape's Home Page</a>
</TR>
</TABLE>
< /BODY >
< /HTML >
Save the file as tables.html