Ok dann hier mal der ganze Code
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de">
<head>
<link href="design.css" type="text/css" rel="stylesheet" />
<title>HTML Tutorial – meine erste HTML Seite</title>
<link rel="stylesheet" type="text/css"
media="screen" href="design.css" />
<style type="text/css">
<!--
.navi {
float:left;
background-color:#C4C4AE;
margin-top:30px;
width:13em;
}
.navii {
float: left;
width:13em;
background-color:#C4C4AE;
margin-right:577px;
}
#breite {
margin-top: 10px;
margin-left:20%;
margin-right:10%;
margin-bottom: 10px;
}
#seitenbereich {
width: 768px;
height:750;
background-color:#FFFF05;
margin: 0 auto;
}
#kopfzeile {
background-color:lightskyblue;
border-bottom:1px solid black;
}
#fusszeile {
clear: both;
background-color:lightskyblue;
border-top:2px solid black;
}
#infokasten {
float:right ;
width: 10em;
background-color:yellowgreen;}
-->
</style>
</head>
<body>
<div id="seitenbereich">
<div id="kopfzeile">www.exbeats.tl.de</div>
<div id="infokasten">Die neusten Infos rund im Beats!</div>
<div id="breite">
<p> <img src="bilder/html-seminar.jpg" width="500"
height="90" border="2" alt="jetzt HTML lernen" /></p>
</div>
<h1>Meine erste eigene Homepage

</h1>
<table border="1" align="center">
<tr>
<td> Inhalt 1 </td>
<td> Inhalt 2 </td>
</tr>
<tr>
<td>Inhalt 3</td>
<td>Inhalt 4</td>
</tr>
</table>
<div class="navi">
<ul>
<li><a href="http://www.kis.uni-tuebingen.de/kis3/" target="_blank" >Kursprogramm für die Uni-Tübingen</a></li>
<li><a href="http://www.html-seminar.de/" target="_blank" >HTML lernen mit HTML-Seminar.de</a></li>
<li><a href="http://www.php-kurs.com/" target="_blank">PHP Tutorial und MySQL Kurs</a></li>
</ul>
</div>
<div class="navii">
<ul>
<li><a href="meine-hobbies.htm">meine-hobbbies.htm</a></li>
<li><a href="ueber-mich.htm">mueeeber-mich.htm</a></li>
<li><a href="sammlung-von-links.htm">sammmlung-von-links.htm</a></li>
</ul>
</div>
<div id="fusszeile">Kontakt Impressum Über uns </div>
</div>
</body>
</html>
Dazu noch die fehlermeldung
Line 96, Column 63: there is no attribute "target
You have used the attribute named above in your document, but the document type you are using does not support that attribute for this element. This error is often caused by incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Transitional" document type to get the "target" attribute), or by using vendor proprietary extensions such as "marginheight" (this is usually fixed by using CSS to achieve the desired effect instead).
This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.
How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.
Line 80, Column 25: there is no attribute "align"
Line 76, Column 20: there is no attribute "border"
EDIT:ich glaub jetzt erkenne ich denn fehler erst .Ich hab HTML mit design vermischt oder?was man ja nicht macht HTML dann design mit CSS ?