Hi,
Here you can learn about table insert to your blog in simple way. I give you example for applying table in your blog.
First you have to choose HTML button in your blog post page.
Then type the codes as following the blue part of the code is changeable which information you need there you can change that.
Example code:
<table border="2" cellpadding="3" cellspacing="3" style="width: 100%px;">
<tbody>
<tr>
<th>Header</th>
<th>THeader</th>
</tr>
<tr>
<td>Table data</td>
<td>Table data</td>
</tr>
<tr>
<td>Table data</td>
<td>Table data</td>
</tr>
<tr>
<td>Table data</td>
<td>Table data</td>
</tr>
</tbody>
</table>
Explain:
Here I put 2 columns, 3 rows
Border size is 2 each cell have one data.
tag <table> says you are using table
tag <tr> describe the table row
tag <th>describe the table head
tag <td> describe the table data
Output:
Header |
THeader |
Table data |
Table data |
Table data |
Table data |
Table data |
Table data |
tag: html table, how to insert table, how to insert table in blog, how to use table in blog, table , table html