Ramki
<html>
<frameset frameborder="1" framespacing="0" rows="90,*">
<frame src="naglowek.html" name="RAMKA1" scrolling="no" noresize>
<frameset frameborder="0" framespacing="0" cols="170,*">
<frame src="linki.html" name="RAMKA2" scrolling="no">
<frame src="strona1.html" name="RAMKA3">
</frameset>
<noframes>
</noframes>
</html>
gdzie: Ramki – to części wyświetlanej w oknie przeglądarki strony
<frameset> w ramkach zamiast znacznika body
frameborder="1" linia oddzielająca ramki
framespacing="0" odstęp między ramkami
rows="90,*" wiersze, * - wielkość liczona przez przeglądarkę,
<frame> zawartość poszczególnych obszarów
src="naglowek.html" adres podstrony
name="RAMKA1" nazwa ramki
scrolling="no" ramka bez suwaka
noresize nie można zmieniać szerokości okna
cols="170,*" kolumny
<frame zawartość poszczególnych obszarów</frameset>
<noframes>między znacznikami umieszcza się polecenia, które mają zostać wykonane w przypadku, gdy przeglądarka internetowa użytkownika nie akceptuje ramek.
</noframes>
</html>
pomoc: http://www.kurshtml.boo.pl/html/znacznik_frameset,ramki.html
Pomoc
linki.html
<html>
<meta http-equiv="Content-Language" content="pl">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1250">
<body bgcolor="#66CCCC">
<center>
<a href="strona1.html" target="RAMKA3"><img src="p1.gif" border="0"></a>
<br>
<a href="strona2.html" target="RAMKA3"><img src="p2.gif" border="0"></a>
<br>
<a href="strona3.html" target="RAMKA3"><img src="p3.gif" border="0"></a>
</body>
</html>
naglowek.html
<html>
<meta http-equiv="Content-Language" content="pl">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1250">
<body bgcolor=#99CCCC>
<center>
<font face=impact size=7 color=navy>
TEKST REKLAMOWY LUB BANER
</body>
</html>
strona1.html
<html>
<meta http-equiv="Content-Language" content="pl">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1250">
<body bgcolor="#33CCCC">
<center>
<font face="impact" size="6" color="red">
STRONA PIERWSZA
</body>
</html>
strona2.html
<html>
<meta http-equiv="Content-Language" content="pl">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1250">
<body bgcolor="#33CCCC">
<center>
<font face="impact" size="6" color="green">
STRONA DRUGA
</body>
</html>