Developing continuous marquee without JavaScript
Hi, how can i develop continuous marquee with HTML without develop of HTML?
It will be very helpful for me if you describe the process to me.
Thanks in advance.
Hi, how can i develop continuous marquee with HTML without develop of HTML?
It will be very helpful for me if you describe the process to me.
Thanks in advance.
If you want to add a marquee in your html page that goes left or right, you can add this:
<marquee bgcolor="yellow" direction="left" loop="10">Your text here.</marquee>
The bgcolor command or option adds color to your text.
You can change the direction of your text in the direction command. You can change it to left or right.
The loop command will set the limit on how many times your text will be looping.
Removing the loop command will make the text move infinite times. You can also add the command behavior="alternate" to make your text bounce left and right on the screen just like a ball bouncing back and forth.