HTML – Scrolling Text

Marquee tag: The <marquee> is used to create scrollable objects on web page.

Scrolling text:

<html>
            <body>
                        <marquee> Hello All </marquee>
            </body>
</html>

Scrolling Heading:

<html>
            <body>
                        <marquee> <h1> Welcome </h1> </marquee>
            </body>
</html>

Scrolling Bold Italic Underlined Paragraph:

<html>
            <body>
                        <marquee> <p><b><i><u> Welcome </u><i></b></p> </marquee>
            </body>
</html>
Scroll to Top