Lerne HTML (sorry für die Wiederholung), dann würdest Du auch die dir angezeigten Fehlermeldungen verstehen und sie beheben können.
Ein Beispiel:
Dein Quellcode: um Zeil 335 herum (nur sinnlose Leerzeichen habe ich mal der Übersicht wegen hier entfernt):
<body alink="#FFFFFF">
<div id="gesamt">
<p>
<br />
<br />
<div align="center"><img src="banner_wechsel_dich.gif" width="900" height="200" alt="Banner" /></div><br />
<div align="center"><img src="menueleiste.jpg" alt="Navigation" width="900" height="40" border="0" usemap="#Map" />
<map name="Map" id="Map">
<area shape="rect" coords="7,3,127,36" href="http://nachtwoelfe.bplaced.net/wbblite" target="_blank" alt="Forum" />
<area shape="rect" coords="130,3,249,39" href="#" alt="Anmeldung" />
<area shape="rect" coords="250,3,361,37" href="http://616191.guestbook.onetwomax.de/?vd=012907" target="_blank" alt="Diplomatie" />
<area shape="rect" coords="362,3,448,40" href="#" target="_self" alt="Partner" />
<area shape="rect" coords="448,3,513,42" href="#" target="_self" alt="Rudel" />
<area shape="rect" coords="514,3,567,38" href="#" target="_self" alt="Wiki" />
<area shape="rect" coords="568,3,660,39" href="#" target="_self" alt="Historie" />
<area shape="rect" coords="661,4,739,37" href="#" target="_self" alt="Schutz" />
<area shape="rect" coords="739,3,804,37" href="#" target="_self" alt="Toplisten" />
<area shape="rect" coords="806,3,894,38" href="#" target="_self" alt="Informationen" />
</map>
</div>
<p>
<div class="main-container">
<div id="textfluss1">
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><h3>Sei Teil des Rudels!</h3>
Alles anzeigen
Du siehst nun diesen Fehler in Zeile 335 beim Validator:
Zitat
<p>
The mentioned element is not allowed to appear in the context in which you've placed it; the other mentioned elements are the only ones that are both allowed there and can contain the element mentioned. This might mean that you need a containing element, or possibly that you've forgotten to close a previous element.
One possible cause for this message is that you have attempted to put a block-level element (such as "<p>" or "<table>") inside an inline element (such as "<a>", "<span>", or "<font>").
Heißt für dich:
Das Element <p> ist an dieser Stelle nicht zulässig.
Warum? Weil sofort nach dem <p> ein <div>-Element kommt. Ein <div> innerhalb eines <p> ist nicht zulässig wie dir bewusst sein sollte, wenn Du HTML lernen würdest.
Also: das <p> an der Stelle muss weg, ggfs. auch das Ende davon wenn eines irgendwo vorhanden ist.
In o.g. Abschnitt sind aber noch mehr Fehler:
Im body-Element gibt man keine alink-Attribute mehr an. Styles macht man mit CSS.
Für div-Elemente mit dem Attribut align gilt das selbe.
Ein Doctype hat innerhalb eines HTML-Dokuments nichts zu suchen. Siehe auch dazu HTML-Grundlagen.
Nochmal:
Das Forum ist nicht dazu da Grundlagen zu leeren oder vorzukauen. Die solltest Du dir selbst beibringen. Solltest Du dabei ein Verständnisproblem haben, fragt konkret danach. Pauschal alle Hilfestellungen abzulehnen, weil Du sie nicht verstehst und sie dir ggfs. mehr Arbeit machen hilft niemandem.