How to Create a Table in Blogger

Here, we have discussed the tutorial for how to create a table in blogger. To make the blog more professional and interactive we can insert or ....

If you are searching tutorial for how to create a table in Blogger then, this is the right place for you.

How to Create a Table in Blogger

As you all know, blogger is one of the best blogging platform that allows us to create interesting blogs. And in order to make it more professional and interactive we can insert or create table in our blog posts in blogger. By adding tables in your blog posts, you can give more structure to the content of your article.

Benefits of inserting table in blogger

There are various benefits of inserting table in blogger which are as follows;

• Adding tables can give more structure to the content of your article.

• By creating table in blogger, we can give a professional look to our blog.

• Table makes your post more interactive and attractive.

• It also helps in engaging the visitors in your blog posts.

How to Create a Table in Blogger Post

Now, we will discuss the steps to create a table in blogger;

1. Go to Blogger site and Sign-in with your Google account.

2. Now, click on New Post or Select Post/Page where you want to create a table.

How to Create a Table in Blogger

3. Choose HTML view instead of Compose view then paste the following HTML code inside the post/page;

How to Create a Table in Blogger
<table border="1" cellpadding="5" cellspacing="5">

  <tbody>

    <tr>

      <th>Header 1</th>

      <th>Header 2</th>

      </tr>

      <tr>

            <td>Content</td>

            <td>Content</td>

         </tr>

      <tr>

           <td>Content</td>

           <td>Content</td>

         </tr>

         <tr>

            <td>Content</td>

            <td>Content</td>

         </tr>

          <tr>

            <td>Content</td>

            <td>Content</td>

         </tr>

  </tbody>

</table>

Replace the GREEN highlighted text with Heading/Title and Replace the RED  Highlighted text with below title content.

How to Create a Table in Blogger

4. Click on Publish button.

Table Customization

In order to add new rows on HTML table, just add the following HTML code above the tag ;

<tr>

  <td>Content</td>

  <td>Content</td>

</tr>

In order to add new Header on HTML table, add the following HTML code just after the tag

<th>Header 3</th>

If you have added a new header cell in the table, then you also need to add a table data box below it and for that you need to replace;

 <tr>

  <td>Content</td>

  <td>Content</td>

</tr>
 <tr>

  <td>Content</td>

 <td>Content</td>

  <td>Content</td>

</tr>

Demo

Hurrahh!! HTML table is successfully created on your blogger post. Here a sample table is given below;

Header 1 Header 2
Content Content
Content Content
Content Content
Content Content

Conclusion

Above we have discussed the tutorial for how to create a table in blogger. To make the blog more professional and interactive we can insert or create table in our blog posts in blogger. By following the above mentioned steps anyone can easily create a table in blogger.