Joined
·
82 Posts
turn this
into this
(basically take away the inside borders without ruining the format of the table and add a 10px border around the entire table)
here is the code for the first table(with lines)

into this

(basically take away the inside borders without ruining the format of the table and add a 10px border around the entire table)
here is the code for the first table(with lines)
HTML:
<!DOCTYPE html"
<html>
<head>
<title>Page Layout</title>
</head>
<body bgcolor="#FFFFFF">
<font color="0066FF">
<table border="2" cellpadding="10" cellspacing="20">
<tr>
<td bgcolor="#FFFF00" colspan="6" align="center"><b>Number of Students per Lunch</b></td>
<tr>
<td bgcolor="#FFFF00" rowspan="5" align="center"><b><br>2009-10</br>School Year</b></td>
<td></td>
<td><b>Freshman</b></td>
<td><b>Sophomores</b></td>
<td><b>Juniors</b></td>
<td><b>Seniors</b></td>
<tr>
<td><b>1st Lunch</b></td>
<td>100</td>
<td>200</td>
<td>300</td>
<td>400</td>
<tr>
<td><b>1st Lunch</b></td>
<td>75</td>
<td>175</td>
<td>275</td>
<td>275</td>
<tr>
<td><b>3rd Lunch</b></td>
<td>50</td>
<td>150</td>
<td>250</td>
<td>350</td>
</table>
</font>
</body>
</html>