HTML: Lesson 10 - Tables


HTML Tables


Tables are defined with the <table> tag.
Tables are divided into table rows with the <tr> tag.
Table rows are divided into table data with the <td> tag.
A table row can also be divided into table headings with the <th> tag.

<table border="1" > àTable
  
<tr>               -à table row  defines row
    
<td>Jim</td>     à table data   defines each cell
    
<td>Matt</td> 
    
<td>38</td>
  
</tr>
  
<tr>
    
<td>Alan</td>
    
<td>Haim</td> 
    
<td>27</td>
  
</tr>
</table>

0 comments:

TUTORIALS

  • HTML
  • CSS
  • Javascript
  • JQuery
  • PHP
  • MySQL

Labels