How Do I Add a Table to a Page in SoCast?

How Do I Add a Table to a Page in SoCast?

How Do I Add a Table to a Page in SoCast?

SoCast recommends adding tables or spreadsheets to your pages using one of the following methods:

Option 1: Embed a Google Sheet

Google Sheets is a free, web-based spreadsheet program included with Google Drive. You can embed a Google Sheet into your SoCast page by following these steps:

  1. Go to Google Sheets and open your desired file.
  2. Click File > Publish to the web.
  3. Choose a publishing option:
    • Spreadsheet: Publish the entire spreadsheet or select individual sheets. You can also choose a publishing format.
  4. Click Publish.
  5. Copy the generated embed code (or URL) and embed it into your website by pasting it into a Raw HTML element on your SoCast page.

Option 2: Add a Table Using Custom HTML

  1. Open the page where you want to add the table.
  2. In the text editor, switch to the HTML view.
  3. Copy and paste your table's HTML code into the editor. You can use the following sample code and edit it to match your needs:
<table>
  <tr>
    <th>Header 1</th>
    <th>Header 2</th>
  </tr>
  <tr>
    <td>Row 1, Cell 1</td>
    <td>Row 1, Cell 2</td>
  </tr>
  <tr>
    <td>Row 2, Cell 1</td>
    <td>Row 2, Cell 2</td>
  </tr>
</table>

Customize the table as needed for your content.

Don't forget to save your changes!