The <marquee> tag is a container tag of HTML is implemented for creating scrollable text or images within a web page from either left to right or vice versa, or top to bottom or vice versa. Marquee speed can be changed using the "scrollmount" attribute. For example, if you are using scrollmount = "1" then it sets the marque to scroll very slowly, and as you increase the "scrollmount," the scrolling speed will also increase.
DEMO
HTML
<marquee direction="up" scrollamount="2"> Scroll Up </marquee> <marquee direction="right"> Scroll Right </marquee>
Comments
Post a Comment