Als het werkt mag je het zo laten.
Overigens mis je een doctype als eerste regel van je pagina
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
Nodig om de browsers de gebruikte codes te laten snappen.
En dit heb je twee keer:
<meta http-equiv=Content-Type content="text/html; charset=iso-8859-1">
De meldingen:
LeftMargin attribute of the Body tag
zou je in je style kunnen opnemen (in de head)
body {
margin: 0px;
padding: 0px;
}
scrollbar-base-color is not supported
werkt dus niet in de genoemde browsers
Background attribute of the TD tag is not supported
ook in style opnemen, kan inline
td width=20% style="background-image:url('plaatjes/gele_achtergrond.jpg')"
value for the valign attribute of the td tag
td width=124 height=38 valign=center
center moet middle zijn
height attribute of the TR tag is not supported
dus niet gebruiken, maar in td zetten
of inline style gebruiken
tr STYLE="height:87" valign="top"
