Developing continuous marquee without JavaScript

Asked By 30 points N/A Posted on -
qa-featured

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.

SHARE
Answered By 590495 points N/A #106175

Developing continuous marquee without JavaScript

qa-featured

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.

Related Questions