How To Insert Table In Blogger
Its very easy to create or make table in blooger just use following trickTables are defined with the <table> tag. Add a table in blogger | insert a table in blogger
A table is divided into rows (with the <tr> tag), and each row is divided into data cells (with the <td> tag). td stands for "table data," and holds the content of a data cell. A <td> tag can contain text, links, images, lists, forms, other tables, etc.
<table border="1">
<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>
It Will Look Like That
| row 1, cell 1 | row 1, cell 2 |
| row 2, cell 1 | row 2, cell 2 |
Enjoy this trick . Add your valuable comments for the betterment of this website.
0 comments:
Post a Comment