Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

Program 8:Program to insert a scrolling text using Marquee Tag in HTML

<html>

<head>
<title>Example for HTML Marquee Tag</title>
</head>

<body>
<marquee width="40%" direction="right" height="90%">

This is sample 3 scrolling text is moving right.


</marquee>
<marquee width="40%" direction="left" height="60%">
This is sample 3 scrolling text is moving left.
</marquee>
<marquee width="50%" direction="down" height="100%">
This is sample 1 scrolling text is moving downward.
</marquee>
<marquee width="50%" direction="up" height="100%">
This is sample 2 scrolling text is moving upward.
</marquee>
<marquee behavior="scroll" direction="up" scrollamount="1">Slow
Scrolling</marquee>
<marquee behavior="scroll" direction="right" scrollamount="12">Little Fast
Scrolling</marquee>
<marquee behavior="scroll" direction="left" scrollamount="20">Fast
Scrolling</marquee>
<marquee behavior="scroll" direction="right" scrollamount="50">Very Fast
Scrolling</marquee>
</body>

</html>

You might also like