hi,
so hilfreich?
oder fehlt noch etwas?
danke, nö alles komplett.
hier der berichtigte quelltext (hab im moment leider keine zeit, später mehr)
index.html:
********************
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>
Meine Homepage
</title>
<meta name="author" content="Babera">
</head>
<frameset rows='10%,*' bordercolor='#FFFF00'>
<frame src='navigation.html' name='oben' marginwidth='5' marginheight='5'
scrolling="no">
<frame src='haupt.html' name='main' marginwidth='5' marginheight='5'
scrolling='yes'>
</frameset>
</html>
*****************************
navigation.html:
*****************************
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>
Links
</title>
<meta name="author" content="Babera">
<style type="text/css">
body {
background-color: #FFFFFF;
color: #000000;
}
:link { color: #FF0000 }
:visited { color: #FF0000 }
:active { color: #FF0000 }
</style>
</head>
<body>
<a href="1.html" target="main">1. Seite</a> <a href="2.html" target=
"main">2. Seite</a> <a href="3.html" target="main">3. Seite</a>
</body>
</html>
**********************************
1.html
********************************
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>
Seite 1
</title>
<meta name="author" content="Babera">
<style type="text/css">
body {
background-color: #FFFFFF;
color: #000000;
}
:link { color: #FF0000 }
:visited { color: #FF0000 }
:active { color: #FF0000 }
</style>
</head>
<body>
Hier entsteht Seite 1
</body>
</html>
*************************************
haupt.html:
*************************************
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>
Hauptseite
</title>
<meta name="author" content="Babera">
<style type="text/css">
body {
background-color: #FFFFFF;
color: #000000;
}
:link { color: #FF0000 }
:visited { color: #FF0000 }
:active { color: #FF0000 }
</style>
</head>
<body>
Startseite
</body>
</html>
************************************
hth
shadow