FOR ADDING A TABLE
Header information in a table are defined with the <th> tag. A table is divided into rows (with the <tr> tag), and each row is divided into data cells (with the <td> tag). td stands for "table data," and holds the content of a data cell. A <td> tag can contain text, links, images, lists, forms, other tables, etc.
START TABLE - <table border="1">
START HEADER COLUMN - <tr>
HEADER 1 - <th>Header 1</th>
HEADER 2 - <th>Header 2</th>
END HEADER COLUMN - </tr>
START COLUMN 1 - <tr>
ROW 1, CELL 1 - <td>row 1, cell 1</td>
ROW 1, CELL 2 - <td>row 1, cell 2</td>
END COLUMN 1 - </tr>
START COLUMN 2 - <tr>
ROW 2, CELL 1 - <td>row 2, cell 1</td>
ROW 2, CELL 2 - <td>row 2, cell 2</td>
END COLUMN 2 - </tr>
END TABLE - </table>
Header 1 | Header 2 |
---|---|
row 1, cell 1 | row 1, cell 2 |
row 2, cell 1 | row 2, cell 2 |
Powered by: Prince Pogzit