|
Hallo Kilian,
als ich meinen Text für den Browser-Vergleich geschrieben habe, fiel mir auf,
das Dein Code der index.html nicht Okay ist. Hier Dein Code...
<html>
<head>
<title>APC & TCP Onlinemagazin</title>
</head>
<body background="bg2.jpg" text="#000000" link="#0000ff" alink="#ff0000"
vlink="#000080" bgcolor="#b0b0b0">
<br><center>
<table border=4><tr><td background="bg1.gif">
<table border=0 width=100%>
<tr>
<td align=center>
<b><font color="#006000" size="7"><i> Das APC & TCP Onlinemagazin </i></font></b>
</td>
</tr>
</table>
<hr>
<table border=0 width=100%>
<tr>
<td valign=center align=center>
<a href="nc/index.html" target="_top"><img src="nc.gif" border=0 alt="NoCover"></a>
</td>
<td valign=center align=center>
<a href="el/index.html" target="_top"><img src="el.gif" border=0 alt="Editorial"></a><br>
<a href="aa/index.html" target="_top"><img src="aa.gif" border=0 alt="+Amiga Aktuell"></a>
</td>
</tr>
</td></tr>
</table>
<hr>
<br>
</body>
</html>
Als ich einen Fehler suchte, der das korrekte Anzeigen bei Netscape verhindert,
bemerkte ich, daß Du drei table öffnest und aber nur zwei wieder schließt.
Also habe ich mal mit Tidy geprüft. Hier das Ergebnis...
Die drei ersten Warnungen sind belanglos, aber wenn man guten, gültigen Code
schreiben will, dann sollte mindestens summary="" notiert werden.
Oder besser der Inhalt der Tabelle zb. summary="Logo" oder summary="Grafik-Link".
Die letzten 6 Zeilen Deines Codes sollten geändert werden:
</td></tr>
</table>
<hr>
<br>
</body>
</html>
und dann so aussehen:
</table>
<hr>
<br>
</table>
</center>
</body>
</html>
und wenn die zusammenfassung (summary) der Table noch bei steht,
dann hast Du gültiges HTML. Und das sieht so aus:
<html>
<head>
<title>APC & TCP Onlinemagazin</title>
</head>
<body background="bg2.jpg" text="#000000" link="#0000ff" alink="#ff0000"
vlink="#000080" bgcolor="#b0b0b0">
<br><center>
<table border=4><tr><td background="bg1.gif" summary="">
<table border=0 width=100% summary="">
<tr>
<td align=center>
<b><font color="#006000" size="7"><i> Das APC & TCP Onlinemagazin </i></font></b>
</td>
</tr>
</table>
<hr>
<table border=0 width=100% summary="">
<tr>
<td valign=center align=center>
<a href="nc/index.html" target="_top"><img src="nc.gif" border=0 alt="NoCover"></a>
</td>
<td valign=center align=center>
<a href="el/index.html" target="_top"><img src="el.gif" border=0 alt="Editorial"></a><br>
<a href="aa/index.html" target="_top"><img src="aa.gif" border=0 alt="+Amiga Aktuell"></a>
</td>
</tr>
</table>
<hr>
<br>
</table>
</center>
</body>
</html>
|