<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html >
<head><title>Mijn tweede webpagina</title>
<style type="text/css">
.rij1{
height:120px;
width:200px;
color:red;
font-family: Verdana;
}
.cel1{
height:120px;
width:100px;
}
.rij{
height:80px;
width:200px;}
.cel{
height:80px;
widht:100px;}

</style>
</head>
<body>
<table>
<tr class="rij1">
<td class="cel1">Naam</td>
<td class="cel1">Gewicht</td>
</tr>
<tr class="rij">
<td class="cel">Jan</td>
<td class="cel">83kg</td>
</tr>
<tr class="rij">
<td class="cel">Piet</td>
<td class="cel">79kg</td>
</tr>
<tr class="rij">
<td class="cel">Stefaan</td>
<td class="cel">101kg</td>
</tr>





</table>




</body>
</html>