Marquee
Basic Code
DescriptionThe basic beginning and ending codes are
Code
<marquee> Text goes here </marquee>
Output
Text goes here
Practice
Marquee Background
DescriptionThe background that the text loops on.

Here is the most basic way to change the background color of the marquee area:
In the <marquee> tag, put bgcolor="xxxxxx" whereas xxxxxx is the hexidecimal code of a certain color
So the full tag is
<marquee bgcolor="3j79d3">
Text goes here
</marquee>
Code
<marquee bgcolor="3j79d3">
Text goes here
</marquee>
Output
Text goes here
Practice
Advertisements