XHTML and CSS Tutorial - 13 - colspan & Annoying People


<!doctype html>
<html>
<head>
</head>
<body>

<table border =“1”>
<tr>
 <th colspan =”2”><h3>Odd People</h3></th>
</tr>
<tr>
<th>Type</th>
<th>Reason</th>
<tr> 
<td> Cat people</td>
<td>17 cats is just too many </td>
</tr>
<tr>
  <td> Loud People </td>
<td> Sure turn that music up, its only 3am </td>
</tr>
</table>
</body>
</html> 

Comments