Creating Tables
Most sites are created using tables. This page will show how to make a basic table with and without borders.
This is a table with one cell and a border of 1
<html>
<head>
<title> Table with one Cell</title>
</head>
<body>
<table border="1">
<tr>
<td></td>
</tr>
</table>
</body>
</html>
|
Click here to view the table
This is a table with two cells. An image in one and text in the other.
<html>
<head>
<title> Table with two cells</title>
</head>
<body>
<table border="1">
<tr>
<td><img src="trophy2103.jpg"></td><td>This is a Trophy 2200 with a 200hp Mecury engine. Four rod holders and plenty of deck space for landing the big fish.</td>
</tr>
</table>
</body>
</html>
|
Click here to view the table