hi,
ich hab folgendes Problem, das das rechte und obere frame nicht angezeigt werden...
Also meine Dateien:
index.html
rechts.html
links.html
oben.html
start.html
Warum wird oben.html und rechts.html nicht angezeigt??
ich hab folgendes Problem, das das rechte und obere frame nicht angezeigt werden...
Also meine Dateien:
index.html
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN">
<html>
<head>
<title>Homepagetitel</title>
</head>
<frameset framespacing="0" border="false" frameborder="0" cols="*,800,*">
<frame name="links" src="links.html">
<frameset framespacing="0" border="false" frameborder="0" rows="90,*">
<frame name="oben" src="oben.html">
<frame name="anzeige" src="start.html">
</frameset>
<frame name="rechts" src="rechts.html">
</frameset>
</html>
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>rechts</title>
</head>
<body bgcolor="blue">
test
</body>
</html>
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>links</title>
</head>
<body bgcolor="blue">
Test
</body>
</html>
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>oben</title>
</head>
<body bgcolor="red">
test
</body>
</html>
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>inhalt</title>
</head>
<body>
Das ist ein Test
</body>
</html>