TABLE SHORTCODEJohn Doe

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

Header 1Header 2Header 3Header 4Header 5
Division 1Division 2Division 3Division 4Division 5
Division 1Division 2Division 3Division 4Division 5
Division 1Division 2Division 3Division 4Division 5
Division 1Division 2Division 3Division 4Division 5
Division 1Division 2Division 3Division 4Division 5

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]