HTML <marquee> Tag Example

HTML Code:

<marquee>This is scrolling text</marquee>

<marquee direction="right">Scrolling right</marquee>

<marquee behavior="alternate">Bouncing text</marquee>

<marquee scrollamount="10">Fast scrolling text</marquee>
    

Output in Browser:

This is scrolling text Scrolling right Bouncing text Fast scrolling text

Note: The <marquee> tag is deprecated in HTML5. It was used for scrolling or moving text. Use CSS animations for modern webpages.