HTML and CSS Reference
In-Depth Information
3.
Remove the table border by specifying border=”0” :
<body>
<table border =”0” width=”100%”>
<tr>
<td>links</td>
<td>content</td>
</tr>
</table>
4.
Make the first cell light gray. Add the attribute
bgcolor=”#cccccc” to the first <td> tag:
<body>
<table border=”0” width=”100%”>
<tr>
<td bgcolor=”#cccccc” >links</td>
<td>content</td>
</tr>
</table>
5.
Save the page and view it in the browser.
It should look like this:
Search WWH ::




Custom Search