HTML Marquee

The HTML <marquee> element defines a Marquee.

Attribute of Marquee

1 Width Marquee Width Area In Number
2 Height Marquee Height Area In Number
3 Direction Marquee Direction Left, Right, Top, Bottom
4 Behavior Marquee Behavior Alternet, Scroll, Slide
5 Scrollamount To fast move time In Number
6 Scrolldelay To delay move time In Number
7 Loop How many times it move In Number
8 Title On Mouse Over Message
Example (Default)
This is Default Marquee
<marquee>This is Default Marquee</marquee>
Example (Background color)
Background Color of Marquee
<marquee bgcolor="#2E9AFE">Background Color of Marquee</marquee>
Example (Width)
Set Width of Marquee
<marquee width="100">Set Width of Marquee</marquee>
Example (Height)
Set Width of Marquee
<marquee height="100">Set Width of Marquee</marquee>
Example (Direction)
Right Direction Marquee Left Direction Marquee Up Direction Marquee Down Direction Marquee
<marquee direction="right">Right Direction Marquee</marquee>
<marquee direction="left">Left Direction Marquee </marquee>
<marquee direction="up">Up Direction Marquee </marquee>
<marquee direction="down">Down Direction Marquee</marquee>

Example (Behavior)
Alternet Behavior Marquee Scroll Behavior Marquee Slide Behavior Marquee
<marquee behavior="alternate">Alternet Behavior Marquee</marquee>
<marquee behavior="scroll">Scroll Behavior Marquee</marquee>
<marquee behavior="slide">Slide Behavior Marquee</marquee>

Example (Scrollamount, Scrolldelay, Loop)
Fast Marquee Slow Marquee 2 times move marquee
<marquee scrollamount='50'>Fast Marquee</marquee>
<marquee scrolldelay='50'>Slow Marquee</marquee>
<marquee loop=2>2 times move marquee</marquee>