Tables

Squarespace does not provide a way to enter tables. This is because tables are inherently not mobile friendly and should not be used unless they are simple. To add a simple table, write table HTML and paste it in a "Code Block". An example is below:

Name City State
John Doe Ann Arbor MI
Josh Hanks Lansing MI

The code for this table is as follows:

<table>
  <tr>
    <th>Name</th>
    <th>City</th>
    <th>State</th>
  </tr>
  <tr>
    <td>John Doe</td>
    <td>Ann Arbor</td>
    <td>MI</td>
  </tr>
  <tr>
    <td>Josh Hanks</td>
    <td>Lansing</td>
    <td>MI</td>
  </tr>
</table>

You can use the above code as a base to create your future simple tables. For a more complicated table layout, discuss as a team and contact your web representative.