|
|
Test Page
This page demonstrates the use of tables as sidebars. This is
the source code we used:
<html>
<head>
<title>Test Page</title>
</head>
<body bgcolor="black" text=#F0F0F0 link="lightblue"
vlink="lightblue" alink="lightblue">
<table>
<tr>
<td width=200 valign="top">
<!-- This is the sidebar -->
<table width=200 border=0>
<tr><td colspan=2>
<center><font size=+1 color="red">Site
Map</font></center>
</td></tr>
<tr>
<td width=100 align="center">
<a href="index.html">Home</a>
</td>
<td width=100 align="center">
<a href="products.html">Products</a>
</td>
</tr>
<tr>
<td width=150 align="center">
<a href="links.html">Links</a>
</td>
<td width=150 align="center">
<a href="contact.html">Contact Us</a>
</td>
</tr>
</table>
</td>
<td>
<!-- This is the main area -->
<h1>Test Page</h1>
<br>
<p>
This page demonstrates the use of tables as sidebars. This is the
source code we used:
</p>
<!-- Snipped for space -->
</td>
</tr>
</table>
</body>
</html>
|