What is marquee ?
marquee is a scrolling piece of text displayed either horizontally across or vertically down your web site page depending on the settings.
<marquee attribute_name="attribute_value"....more attributes>
One or more lines or text message or image
</marquee>
width: how wide the marquee is.
height: how tall the marquee is.
direction: which direction the marquee should scroll. This will have value either up, down, left or right.
scrollamount: how far to jump. This will have a value like 10 etc
bgcolor: background color. This will have any color name or color hex value
hspace: horizontal space around the marquee. This will have a value like 10 or 20%etc
vspace: vertical space around the marquee. This will have a value like 10 or 20%etc.
<html>
<body>
<marquee direction="right" scroll amount="2">Welcome to cncweb world</marquee>
</body>
</html>