<TABLE> Practice Lesson

Let's try it out. Open a new document in Notepad and type the standard HTML layout:

<html>
<head>
</head>
<body bgcolor="#ffffff" text="#000000">
</body>
</html>

Next, let's add the basic tags for a table that contains one row and a cell within that row that contains the word "test":

<html>
<head>
</head>
<body bgcolor="#ffffff" text="#000000">
<table>
<tr>
<td><font face="verdana" size="5">test</font>
</td>
</tr>
</table>

</body>
</html>

Now, save your html document and open it in Internet Explorer. Click here to compare your Web page with mine. You'll notice, that the table itself is not visible because we have not set the border attribute.

Back Continue