Skip to main content

Posts

How to create table in HTML

Tables Access your blog Posts > click Edit on any of your posts or add a new post. then switch to HTML area of the post editor and add the below coding anywhere you want to make the table appear.  <div class="post-table"> <table>     <thead> <tr>         <th>First Name</th>         <th>Last Name</th>         <th>Hero Title</th>       </tr> </thead>     <tbody> <tr>         <td data-label="First Name">Bruce</td>         <td data-label="Last Name">Wayne</td>         <td data-label="Hero Title">Batman</td>       </tr> <tr>         <td data-label="First Name">Peter</td>         <td data-label="Last Name">Parker</td>   ...