HTML program to demonstrate use of MARQUEE tag

HTML Code

<html>
<head>
    <title>marquee HTML TAG</title>
</head>
<body>
    <marquee behavior="ALTERNATE">
        SPECIAL PRICE! This week only!!.
    </marquee>
    <marquee id="marquee1" bgcolor="GRAY" direction="RIGHT" height="30" width="80%" hspace="10" vspace="10">
        HTML is a basic of building web page. Try to learn each component carefully and you will know that HTML is very easy.
    </marquee>
</body>
</html>

OUTPUT