Design funktioniert nicht

123Mona321
Problem gelöst

Hallo,
bei mir funktioniert mal wieder etwas nicht, und zwar das Design von http://www.lima-city.de . Ich habe das Design direkt am FTP hochgeladen, da es bei Abload gelöscht wurde. Hier der Indexcode:
code:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
<link rel=stylesheet type=text/css href=http://vridreamdancer.lima-city.de/style.css>
<head>
<title>Reitinternat Dreamdancer</title>
<BODY marginwidth="0" leftmargin="0" marginheight="0" topmargin="0" scroll="auto">
<IMG NAME="design0" SRC="http://www.vridreamdancer.lima-city.de/design2.jpg" WIDTH="1024" HEIGHT="768" BORDER="0" USEMAP="#design">

<div id="Layer1" style="position: absolute; left: 202px; top: 356px;">
<iframe src="http://vridreamdancer.lima-city.de/main.html" name="main" width="823" height=412" frameborder=0 scrolling="auto" noresize style="border: 0px" style="FILTER: chroma (color=#ffffff)" ;>
</iframe>
</div>

<div id="Layer2" style="position: absolute; left: 1px; top: 405px;">
<iframe src="http://vridreamdancer.lima-city.de/menu.html" name="menu" width="195" height=363" frameborder=0 scrolling="auto" noresize style="border: 0px" style="FILTER: chroma (color=#ffffff)" ;>
</iframe>
</div>

<div id="Layer3" style="position: absolute; left: 1px; top: 220px;">
<iframe src="http://vridreamdancer.lima-city.de/news.html" name="news" width="195" height=165" frameborder=0 scrolling="auto" noresize style="border: 0px" style="FILTER: chroma (color=#ffffff)" ;>
</iframe>
</div> 



Braucht ihr sonst noch etwas, um das Problem zu lösen?
Für Hilfe danke ich schon im Voraus.
L.G. Dana
Ileina
Edit: Ok, war wohl zu spät Augenzwinkern

Ich habs jetzt nur grob überflogen und das sind die gröbsten Fehler:
das <link rel=stylesheet... muss in den <head>-Bereich, außerdem hast du die <head> und <body> Tags nicht geschlossen mit </head> und </body>.

Probiers mal so: Augenzwinkern

php:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
<html>
<head>
<link rel=stylesheet type=text/css href=http://vridreamdancer.lima-city.de/style.css>
<title>Reitinternat Dreamdancer</title>
</head>
<body marginwidth="0" leftmargin="0" marginheight="0" topmargin="0" scroll="auto">
<IMG NAME="design0" SRC="http://www.vridreamdancer.lima-city.de/design2.jpg" WIDTH="1024" HEIGHT="768" BORDER="0" USEMAP="#design">

<div id="Layer1" style="position: absolute; left: 202px; top: 356px;">
<iframe src="http://vridreamdancer.lima-city.de/main.html" name="main" width="823" height=412" frameborder=0 scrolling="auto" noresize style="border0px" style="FILTERchroma (color=#ffffff)" ;>
</iframe>
</div>

<div id="Layer2" style="position: absolute; left: 1px; top: 405px;">
<iframe src="http://vridreamdancer.lima-city.de/menu.html" name="menu" width="195" height=363" frameborder=0 scrolling="auto" noresize style="border0px" style="FILTERchroma (color=#ffffff)" ;>
</iframe>
</div>

<div id="Layer3" style="position: absolute; left: 1px; top: 220px;">
<iframe src="http://vridreamdancer.lima-city.de/news.html" name="news" width="195" height=165" frameborder=0 scrolling="auto" noresize style="border0px" style="FILTERchroma (color=#ffffff)" ;>
</iframe>
</div> 
</body>
</html>
123Mona321
Danke, es hat mir trotzdem geholfen, da ich das mit dem link rel stylesheet nicht wusste. Hab nun auch das geändert.