HTML Marquee Text Examples

Definition

  • HTML <marquee> tag use to create a scrolling text from left to right, right to left, top to bottom, bottom to top. There is no limit. HTML Marquee tag is use to display text in marquee style.

  • <marquee> tag is a container tag.

Continuous Text scrolling

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

Run it...   »

Continuous scrolling text

Slide Stop text

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

Run it...   »

Slide Stop text

Side Touch Margin Bounce Text

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

Run it...   »

Side Touch Margin Bounce Text

Upside Text Scrolling

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

Run it...   »

Upside Text Scrolling

Marquee Text Scrolling Speed

<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>

Run it...   »

Slow speed scroll speed Medium speed scroll speed Fast speed scroll speed

Marquee Tag Examples

Marquee Examples
Marquee Image Examples
Marquee Start/Stop Examples
Marquee Slow Fast Text Examples
Marquee Falling Text Examples

Use our Marquee code generator HTML Marquee Image Code Generator