Marquee codes allows your text to scroll or anything else for that matter by using the <marquee> tag.
You can generate marquee codes online
here.
Slide-in textThis text slides in from the right, then stays where it is. You will need to refresh this page to see the effect again.
<marquee behavior="slide" direction="left">Your slide-in text goes here</marquee>
Example of Slide-in text:
Continuous scrolling text
<marquee behavior="scroll" direction="left">Your scrolling text goes here</marquee>
Example of Continuous scrolling text:
Text bouncing back and forth
<marquee behavior="scroll" direction="up">Your upward scrolling text goes here</marquee>
Example of Text bouncing back and forth:
Text Scrolling Upwards
<marquee behavior="scroll" direction="up">Your upward scrolling text goes here</marquee>
Example of Text Scrolling Upwards:
Change the Scrolling Speed
<marquee behavior="scroll" direction="left" scrollamount="1">Slow scroll speed</marquee>
<marquee behavior="scroll" direction="left" scrollamount="10">Medium scroll speed</marquee>
<marquee behavior="scroll" direction="left" scrollamount="20">Fast scroll speed</marquee>
Example of Change the Scrolling Speed:
Scrolling ImagesJust replace the image source.
<marquee behavior="scroll" direction="left"><img src="your-image-here.gif" width="100" height="100" alt="image" /></marquee>
Example of Scrolling Images:
Images & Text (Both Scrolling)Simply add your text under the image tag (but still within the marquee tags).
<marquee behavior="scroll" direction="left">
<img src="you-image-here.gif" width="100" height="100" alt="image" />
<p>Sample text under a marquee image.</p>
</marquee>
Example of Images & Text (Both Scrolling):