Answers for "2. what is a marquee in html"

7

html marquee

<marquee scrolldirection="left">Your text here</marquee>
Posted by: Guest on January-06-2021
0

marquee tag html

Here's the simplest way to do it without any Javascript or whats so ever!
<marquee>Add the text you want to scroll</marquee>
You can even control it using these attributes
<marquee behavior="scroll" direction="right"></marquee>
<marquee behavior="scroll" direction="up"></marquee>
<marquee behavior="scroll" direction="down"></marquee>
<marquee behavior="scroll" direction="left" scrollamount="5"></marquee>
You can use CSS to make it look better and make it dynamic. But this is 'nuf for now!
Posted by: Guest on December-09-2021

Browse Popular Code Answers by Language