ein erster Schritt sollte der http://validator.w3.org/check?uri=http%3A%2F%2Fchaos-returns.de%2Fanleitung.php sein.
Danke für den Link, hat mich schon ein Stück weitergebracht.
Er gibt mir nurnoch einen Fehler aus, bei dem ich nicht weiß, wie ich ihn beheben kann:
1.
Line 63, column 6: end tag for "HEAD" which is not finished
</head>
Most likely, You nested tags and closed them in the wrong order. For example <p><em>...</p> is not acceptable, as <em> must be closed before <p>. Acceptable nesting is: <p><em>...</em></p>
Another possibility is that you used an element (e.g. 'ul') which requires a child element (e.g. 'li') that you did not include. Hence the parent element is "not finished", not complete.
Bei mir im Code sieht das dann so aus:
<html>
<head>
<style type="text/css">
<!--
##CSS-Geschreibsel##
-->
</style>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
Was stimmt damit nicht?