Tuesday, May 13, 2014

HTML Lessons part 19

In this lesson I am going to teach you how to use the <table> tag but only the basics of it.  This is how to code a table.

<table>
<tr>
<td>Hi</td>
<td>Sup</td>
</tr>
</table>

The <tr> element is a row of data cells and the <td> tag is one of the datacell/columns.  You can add more than one row.  You can also style it.  If you want to style the whole row then put the style in the <tr> but is you want is only in the datacell the just put it in the <td>.  That is all for today!

1 comment: