HTML Marquee tag

It can scroll the content or tags or images or videos ext…
Marquee Tag Attributes
Direction: Change the direction of marquee [*left, right, up, down] [up and down supports only in box] that means that element move fixed surface
Scrollamount: Increase or decrease speed of the content [default 6px per second]
Loop: Specify number of scrolls allowed by marquee tag
Bgcolor: background color for marquee
Behavior: change the behavior of the marquee default it supports three types [*scroll, alternate, slide]

Example of marquee tag
<html>
    <head>
                <title> First Page</title>
    </head>
    <body>
                <marquee direction='right' scrollamount='10' loop='5' behavior='scroll' bgcolor='cyan' title="Marquee Tag" >Welcome to Home Page</marquee>                 
    </body>

</html> 

No comments:

Post a Comment