Creating a Simple Table

Go to the Navigation pageHelpExitBackNext

The <TABLE> Tag
To make tables, you have to start with a <TABLE> tag. Of course, you end your tables with the </TABLE> tag. If you want the table to have a border, use a BORDER attribute to specify the width of the border in pixels. A border size of 0 (or leaving the BORDER attribute out entirely) will make the border invisible, which is often handy when you are using a table as a page layout tool.

 
<HTML><HEAD><TITLE>A Simple Table</TITLE></HEAD>
<BODY>
<TABLE BORDER=1>
...