TUTORIAL HTML :Tables
Sample of the pdf document :
An HTML table is an element comprised of table
rows and columns, much like you'd see when working with an application such as
Excel. Tables are container elements, and their sole purpose is to house other
HTML elements and arrange them in a tabular fashion row by row, column by
column.
Tables may seem difficult at first, but after
working through this lesson, you'll see that they aren't so horrible. A table
element consists of three different HTML tags including the <table> tag,
<tr> (table rows), and the <td> (table columns) tags.
HTML Table Code:
<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>
Basic HTML Table Layout:
| 
   
Row 1 Cell
  1 
 | 
  
   
Row 1 Cell
  2 
 | 
 
| 
   
Row 2 Cell
  1 
 | 
  
   
Row 2 Cell
  2 
 | 
 
Click here for free Download / PDF

0 commentaires: