MARQUEE
An HTML marquee is a scrolling piece of text displayed either horizontally across or vertically down your webpage depending on the settings. This is created by using HTML
< marquee attribute_name = "attribute_value"....more attributes>
One or more lines or text message or image
</marquee>
The <marquee> Tag Attributes | |
| Sr.No. | Attribute and Desciption |
| 1 | widthThis specifies the width of the marquee. This can be a value like 10 or 20% etc. |
| 2 | heightThis specifies the height of the marquee. This can be a value like 10 or 20% etc. |
| 3 | directionThis specifies the direction in which marquee should scroll. This can be a value like up, down, left or right. |
| 4 | behaviorThis specifies the type of scrolling of the marquee. This can have a value like scroll, slide and alternate.. |
| 5 | scrolldelayThis specifies how long to delay between each jump. This will have a value like 10 etc.. |
| 6 | scrollamountThis specifies the speed of marquee text. This can have a value like 10 etc.. |
| 7 | bgcolorThis specifies background color in terms of color name or color hex value. |
| 8 | hspaceThis specifies horizontal space around the marquee. This can be a value like 10 or 20% etc. |
| 9 | vspaceThis specifies vertical space around the marquee. This can be a value like 10 or 20% etc. |
Example-1
Example-2
Example-3
Example-4