I have a questions regarding printing contents in table:
1) i see in many web site as :
http://wpglamour.com/classipress/category/audiovideo/
the owner use table to print contents in each line, how to do dat
2) also how can i give to each line a color
this is the example of table I'd like to use:
<table>
<thead>
<tr>
<th scope="col">Employée</th>
<th scope="col">Division</th>
<th scope="col">Observation</th>
<th scope="col">Rating</th>
</tr>
</thead>
<tbody>
<tr>
<td>colore 01</td>
<td>colore 01</td>
<td>colore 01</td>
<td>colore 01</td>
</tr>
<tr>
<td>colore 02</td>
<td>colore 02</td>
<td>colore 02</td>
<td>colore 02</td>
</tr>
<tr>
<td>colore 01</td>
<td>colore 01</td>
<td>colore 01</td>
<td>colore 01</td>
</tr>
<tr>
<td>colore 02</td>
<td>colore 02</td>
<td>colore 02</td>
<td>colore 02</td>
</tr>
</tbody>
</table>
Thanks!
Cheers,