How to add Table to your page

To add list to your page use basic html tags: table, tr, td, and then add table style by clicking on table shortcode button, that can be found integrated in default editor panel in visual mode.

How it looks

[ox_table]
Header 1 Header 2 Header 3 Header 4 Header 5
Division 1 Division 2 Division 3 Division 4 Division 5
Division 1 Division 2 Division 3 Division 4 Division 5
Division 1 Division 2 Division 3 Division 4 Division 5
Division 1 Division 2 Division 3 Division 4 Division 5
Division 1 Division 2 Division 3 Division 4 Division 5
[/ox_table]


Sample Code

[ox_table]
<table>
<thead>
<tr>
<th>Header 1</th>
<th>Header 2</th>
</tr>
</thead>
<tbody>
<tr>
<td>Division 1</td>
<td>Division 2</td>
</tr>
</tbody>
</table>
[/ox_table]