Creating a table in a blogspot
1. Go to the post /page where you want to compose the table
2.Click on HTML view
3.Paste the below given piece of code in the HTML page view
Edit the text accordingly to your needs and if needed then add CSS to customise even more ..!!!
1. Go to the post /page where you want to compose the table
2.Click on HTML view
3.Paste the below given piece of code in the HTML page view
<table>It is essential to know that the initial <th> corresponds to the number of headings or basically columns and <td> the data in the respective rows..
<tbody>
<tr>
<th>H1</th>
<th>H2</th>
<th>H3</th>
</tr>
<tr>
<td>Useme</td>
<td>Lets do this</td>
<td>GOGO</td>
</tr>
<tr>
<td>Nice</td>
<td>Bad</td>
<td>Worst</td>
</tr>
<tr>
<td>Yes</td>
<td>Doit</td>
<td>experiment</td>
</tr>
<tr>
<td>Get</td>
<td>It</td>
<td>Done</td>
</tr>
</tbody>
</table>
Edit the text accordingly to your needs and if needed then add CSS to customise even more ..!!!
No comments:
Post a Comment