In this posts i will tell you how you can add tavle in your blog posts by using html
to create table we use Tag <table>and we end this tag by </table>
we know that in table there is row and column lets we know each one by one two insert row in table we simply use <tr> tag and this and with </tr> inside table tag
here example
<table>
<tr></tr>
></table>
now to add column in table we use tag <td> and end this with </td> this will inside <tr> tag
here example
<
<table><tbody> <tr><td></td></tr> </tbody></table>
you can chack this just by using notepad
let we add more row and column