HTML and CSS Reference
In-Depth Information
<th>Web Technology</th>
<th>Skill Level</th>
</tr>
</table>
To complete our table, we will insert three more rows. In these rows, instead of <th> we
will use the <td> element for representing cells, as these cells will contain actual data and
no headings. Our final table code will look like this:
<table>
<tr>
<th>Web Technology</th>
<th>Skill Level</th>
</tr>
<tr>
<td>HTML</td>
<td>Expert</td>
</tr>
<tr>
<td>CSS</td>
<td>Expert</td>
</tr>
<tr>
<td>JavaScript</td>
<td>Advanced</td>
</tr>
</table>
Search WWH ::

Custom Search