<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Страница с бегущей строкой</title>
</head>
<body>
<h1 align="center">Бегущая строка</h1>
Простейшая бегущая строка
<marquee bgcolor="cyan">Да здравствует РКЭ!</marquee>
Бегущая строка с форматированным текстом
<marquee bgcolor="yellow"><font size="7" color="red">Да здравствует РКЭ!</font></marquee>
Бегущая строка с направлением движения вправо
<marquee direction="right" bgcolor="magenta"><font size="7" color="red">Да здравствует РКЭ!</font></marquee>
Бегущая строка с остановом
<marquee behavior="slide" bgcolor="orange"><font size="7" color="red">Да здравствует РКЭ!</font></marquee>
Бегущая строка с отскоками
<marquee behavior="alternate" bgcolor="khaki"><font size="7" color="red">Да здравствует РКЭ!</font></marquee>
Бегущая строка с изображением
<marquee direction="right"><img src="bear.gif"></marquee>
<h1 align="center">Изображение-карта</h1>
<center><img src="car1.jpg" width="530" height="360" usemap="#mymap"></center>
<map name="mymap">
<area shape="rect" coords="0,0,100,360" href="page1.htm" target="_blank">
<area shape="rect" coords="430,0,530,360" href="page2.htm">
<area shape="circle" coords="265,180,50" href="page3.htm">
<area shape="poly" coords="200,100,330,100,330,260,200,260" href="page4.htm">
</map>
<h1 align="center">Внутренний фрейм</h1>
<center><iframe src="page1.htm" width="400" height="200" frameborder="0" name="myframe"></iframe></center>
<p align="center"><a href="page2.htm" target="myframe">Загрузить page2.htm во фрейм</a></p>
</body>
</html>