HTML Marquee Tag- Tutorialpath

Define Marquee Tag

  • HTML <marquee> tag use to create a scrolling text or scrolling image from left to right, right to left, top to bottom, bottom to top. There is no limit. It’s user define choice.
  • <marquee> tag is a container tag to create scrolling text.
  • <marquee> tag support following some attributes. This attributes use to add more special effect and easy control.
attribute
attribute

Continuous Text scrolling

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

Upside Text Scrolling

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

Marquee Text Scrolling Speed

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

One thought on “HTML Marquee Tag- Tutorialpath

Leave a Reply to kamini singh Cancel reply

Your email address will not be published.