Example - Tables

Previous page...

Tables

1 2 3
4 5 6
7 8 9

The HTML

<html>

<head>
	<title>Tables</title>
</head>

<body bgcolor="Olive">

<h2>Tables</h2>

	<table bgcolor="White" border="1" cellpadding="10" cellspacing="10">
			
		<tr>
		
			<td>1</td>
			<td>2</td>
			<td>3</td>
		</tr>
		
		<tr bgcolor="LimeGreen">
			<td>4</td>
			<td>5</td>
			<td>6</td>
		</tr>
		
		<tr style="color:white;">
			<td bgcolor="Silver">7</td>
			<td bgcolor="Gray">8</td>
			<td bgcolor="Black">9</td>
		</tr>
	</table>

</body>

</html>	
		

© 2003 Ashley Preston 

Computeach International Ltd