SEEING YOUR NAME IN LIGHTS - THE MARQUEE
A marquee is a scrolling message. You can add a marquee to your webpage but
currently only Internet Explorer 4.0 and newer will support this feature. The
marquee tag team is <marquee> and </marquee>. It uses the following
equations.
| Name | FUNCTION | Example |
| width | controls how wide the marquee is |
width="50%"
(marquee will use 50% of the width of your screen) |
| scrolldelay | controls speed of marquee |
scrolldelay="0"
(no delay) |
| behavior | control behavior of text |
behavior=alternate
(text bounces back and forth) |
Here our code has a marquee added that says Cybermoms are the best!
<HTML>
<HEAD>
<TITLE>MY VERY BASIC PLAIN JANE BORING WEBPAGE</TITLE>
</HEAD>
<body bgcolor="#ffffff" text="#000000" link="#0000ff" vlink="#ff0000"
alink="#00ff00">
the good stuff goes here
<P>
<!-- remember to leave a space between the a and href in the link tag -
->
<a href="
http://cybermoms.cyberbeach.net
">Cybermoms</a>
<P>
<a href="mailto:cybmom46@cyberbeach.net">Email our tech!</a>
<P>
<marquee width="50%" scrolldelay="0"
behavior=alternate>Cybermoms are the best!</marquee>
</BODY>
</HTML>