Skip to main content

How To Add Table In Blogger Post (Step-By-Step Guide For Beginners)

If you run a Blogger blog (like your Qowenna blog where you share blogging tips), sometimes you need to show information in a table format. Tables help organize data clearly, such as comparisons, pricing lists, statistics, or step-by-step information.

For example, you may want to show:
  • App earning comparison
  • Blogging tools list
  • SEO checklist
  • Website features comparison
In Blogger, there is no direct table button, so you must use HTML code to create tables.

In this guide, you will learn how to add a table in a Blogger post step by step.

1.) Add Table Using HTML Code (Best Method)

  • Go to Blogger.com
  • Login to your Blogger account.
  • Open your blog dashboard.
  • Click New Post Or open an existing post you want to edit.

At the top of the post editor:

  • Click HTML View

This allows you to add custom HTML code.

  • Paste the following code where you want the table.

<table border="1" style="border-collapse: collapse; width:100%; text-align:center;">
<tr>
<th>Website</th>
<th>Category</th>
<th>Earning Potential</th>
</tr>
<tr>
<td>Blogger</td>
<td>Blogging</td>
<td>High</td>
</tr>
<tr>
<td>YouTube</td>
<td>Video</td>
<td>Very High</td>
</tr>
<tr>
<td>Instagram</td>
<td>Social Media</td>
<td>Medium</td>
</tr>
</table>

  • Click Compose View again to see the table preview.

Now your table will appear in the blog post.


Example Table Preview

Website Category Earning Potential
Blogger Blogging High
YouTube Video Very High
Instagram Social Media Medium

2.) Create Table Using Online Table Generator

If you don't know HTML, you can use table generator websites.

  1. Go to HTML Table Generator website
  2. Create your table design
  3. Copy the HTML code
  4. Paste it into Blogger HTML view

This method is easy for beginners.

How To Make Table Look Professional

You can make your table more attractive by adding CSS style.

Example:

<table style="width:100%; border-collapse: collapse;">
<tr style="background:#f2f2f2;">
<th style="border:1px solid #ddd; padding:8px;">Tool</th>
<th style="border:1px solid #ddd; padding:8px;">Use</th>
</tr>
<tr>
<td style="border:1px solid #ddd; padding:8px;">Ahrefs</td>
<td style="border:1px solid #ddd; padding:8px;">SEO Research</td>
</tr>
<tr>
<td style="border:1px solid #ddd; padding:8px;">Canva</td>
<td style="border:1px solid #ddd; padding:8px;">Graphic Design</td>
</tr>
</table>

This will create a clean and professional table design.


Example Table Preview

Tool Use
Ahrefs SEO Research
Canva Graphic Design

Best Uses Of Tables In Blogger Posts

You can use tables for:

  • Blogging tools comparison
  • Money earning apps list
  • SEO checklist
  • Hosting comparison
  • Course price comparison

Since your Qowenna blog focuses on blogging and earning methods, tables can help explain tools, apps, and platforms easily.

Conclusion

Adding tables in Blogger posts is very easy if you use HTML table code. Tables help organize information clearly and improve the overall quality of your blog posts.

If you regularly publish tutorial or comparison posts, using tables will make your content more professional and SEO-friendly.

Comments