Basics

HTML

Java

Colors

Frames

Tables

Fonts

Graphics

Links

Contact

how do i make a scrolling marquee?

 

This is when words scroll from right to left across the page (or left to right or ...). Copy and paste this code into your editor, just remember that the marquee tag does NOT work with Netscape:



<marquee behavior=scroll direction="left">Your message here</marquee>


Hi! Welcome to Kathleen's HTML-help!


Here is a variation on the basic marquee. The text will slide in from the right and stop at the left margin. Just add this tag:

<marquee behavior=slide direction=left>your message here</marquee>

You might need to reload this page to see it in action!


You can make a marquee go back and forth between the margins:

<marquee behavior="alternate">your message here</marquee>

Welcome to Kathleen's HTML-help!


You can add different widths to any marquee:

<marquee behavior="alternate" bgcolor="#color" width="400">your message here</marquee>

Welcome to Kathleen's HTML-help!




You can change the font type, color and size by adding the font tag before the marquee. Also, you can make any of your marquee messages a hyperlink by adding the <a href> tag before and after your message. Have fun with it!