Visitor

Reads - HTML Tutorials

What the heck is HTML, anyway? I don't understand an HTML document! How do I customize text (font, size, color, etc.)? How do I insert images? How do I insert links and anchors? How do I insert tables? How do I insert lists? How do I insert comments in my HTML document?

How do I insert tables?

Tables in HTML are defined with the <table>...</table> tag. A table is divided into rows (<tr>...</tr>), and each row is divided into data cells (<td>...</td>). If border attributes aren't specified, the table will be displayed without borders.

A basic table (with borders) looks like this:
Row 1 Cell 1 Row 1 Cell 2
Row 2 Cell 1 Row 2 Cell 2
The code used for the table above is: <table border="1"> <tr> <td>Row 1 Cell 1</td> <td>Row 1 Cell 2</td> </tr> <tr> <td>Row 2 Cell 1</td> <td>Row 2 Cell 2</td> </tr> </table>