Insert Table <table> HTML tag

The <table> tag inserts a Table in your web page. For further information and options see <table> tag at W3Schools
Table is used to tabulate information. If you wish to format your page into box areas, consider using <div> instead.
- You can enter a Caption title which will appear above your table contents.
- Class: (optional) Enter the CSS class name if you have already defined a CSS style for your table
- Style: (optional) Enter a CSS style for your table
You can add sections to your table. Browsers can use these elements to enable scrolling of the table body independently of the header and footer. Also, when printing a large table that spans multiple pages, these elements can enable the table header and footer to be printed at the top and bottom of each page. Including these sections permits you to control the section style with CSS.
- Table Header <thead> tag. Contains one table row of <th> tags. See <thead> tag at W3Schools
- If Table Header Vertical is specified then there is no Header or Footer section but <th> tags are inserted as the first table colum, additional to the specified number of <td> Body Columns.
- Table Footer <tfoot> tag. Contains one table row of <td> tags. See <tfoot> tag at W3Schools
- Table Body <tbody> tag. See <tbody> tag at W3Schools