<class home>  <html part II>   <back   next>

html continued

Cell Color:

TABLE:

   
   

you can change the background color of individual cells with the bgcolor tag in the <td> tags
<td bgcolor="red">
<td bgcolor="#31B5D6>


example>>>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>table</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>

<table width="75%" border="1">
<tr>
<td bgcolor="red">THIS IS RED.</td>
<td bgcolor="#31B5D6">THIS IS BLUE.</td>
</tr>
<tr>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
</table>
</body>
</html>