|    
 Crew algemeen
 |  | Van je hele HTML klopt gewoon geen zak...  
 Het volgende krijg je als output:
 
 
    
    
        
            
                <html>
<head>
<link rel="stylesheet" href="style.css" type="text/css">
<title>
Handelplaats.nl
</title>
</head>
<body>
<table class=main width=100%><tr><td>
<img src=img/bannerzij.gif width=33%><img src=img/banner.gif width=33%><img src=img/bannerzij.gif width=33%>
</tr><tr>
EYYYYYYYYYYYYYYY
</tr><tr>
<center><p class=small><center>Copyright 2007-2008</center></p>
</tr></td></table>
</body>
</html> <html><head><link rel="stylesheet" href="style.css" type="text/css"><title>Handelplaats.nl</title></head><body><table class=main width=100%><tr><td><img src=img/bannerzij.gif width=33%><img src=img/banner.gif width=33%><img src=img/bannerzij.gif width=33%></tr><tr> EYYYYYYYYYYYYYYY</tr><tr><center><p class=small><center>Copyright 2007-2008</center></p></tr></td></table> </body></html>
   
 Als het er zo uit zou zien, zou het beter werken:
 
 
    
    
        
            
                <html>
<head>
<link rel="stylesheet" href="style.css" type="text/css">
<title>
Handelplaats.nl
</title>
</head>
<body>
<table class=main width=100%>
	<tr>
		<td>
			<img src=img/bannerzij.gif width=33%>
			<img src=img/banner.gif width=33%>
			<img src=img/bannerzij.gif width=33%>
		</td>
	</tr>
	<tr>
		<td>
			EYYYYYYYYYYYYYYY
		</td>
	</tr>
	<tr>
		<td>
			<p class=small>
			<center>Copyright 2007-2008</center>
			</p>
		</td>
	</tr>
</table>
</body>
</html> <html><head><link rel="stylesheet" href="style.css" type="text/css"><title>Handelplaats.nl</title></head><body><table class=main width=100%>	<tr>		<td>			<img src=img/bannerzij.gif width=33%>			<img src=img/banner.gif width=33%>			<img src=img/bannerzij.gif width=33%>		</td>	</tr>	<tr>		<td>			EYYYYYYYYYYYYYYY		</td>	</tr>	<tr>		<td>			<p class=small>			<center>Copyright 2007-2008</center>			</p>		</td>	</tr></table></body></html>
   
 Dus ik stel voor dat je nog wat tutorials HTML leest, want zoals je ziet, klopt het bovenste (jouw code) van geen kanten...
 |