HTML Marquee Text Example

Continuous Scrolling Text Marquee

<html>
<head>
</head>
<body>
  <marquee behavior="scroll" direction="left">Continuous scrolling text</marquee>
</body>
</html>
Continuous scrolling text

Marquee Text Slide Stop

<html>
<head>
</head>
<body>
  <marquee behavior="slide" direction="left">This is a Slide Stop text</marquee>
</body>
</html>
This is a Slide Stop text

Marquee Text Side Touch Margin and Bounce Back Scrolling

<html>
<head>
</head>
<body>
  <marquee behavior="alternate" direction="left">Side Touch Margin Bounce Text</marquee>
</body>
</html>
Side Touch Margin Bounce Text

Marquee Text Upside Scrolling

<html>
<head>
</head>
<body>
  <marquee behavior="scroll" direction="up">Upside Text Scrolling</marquee>
</body>
</html>
Upside Text Scrolling

Marquee Text Scrolling Speed Change

<html>
<head>
</head>
<body>
  <marquee behavior="scroll" direction="left" scrollamount="3">Slow Speed scroll speed</marquee>
  <marquee behavior="scroll" direction="left" scrollamount="10">Medium Speed scroll speed</marquee>
  <marquee behavior="scroll" direction="left" scrollamount="17">Fast Speed scroll speed</marquee>
</body>
</html>
Slow Speed scroll speed Medium Speed scroll speed Fast Speed scroll speed