Normal Marquee:
This is the normal marquee for the beginners who start to know about the HTML Language.HTML Marquee:
<html>
<head>
<title>Html normal Marquee tag</title>
</head>
<body>
<marquee>Welcome to our blog</marquee>
</body>
</html>
HTML Marquee Right:
This tag is used to scroll the "text" from right-hand-side to Left-hand-side.
<html>
<head>
<title>HTML Marquee right tag</title>
</head>
<marquee direction = "right">Welcome to our blog</marquee>
</body>
</html>
HTML Marquee Up:
This tag is used to show the text from down towards to the up.
<html>
<head>
<title>HTML marquee Tag</title>
</head>
<body>
<marquee direction = "up">Welcome to our blog</marquee>
<body>
</html>
HTML Marquee Down:
This tag is used to show the text from "Up to Down".
<html>
<head>
<title>HTML marquee Down Tag</title>
</head>
<body>
<marquee direction = "down">Welcome to our blog</marquee>
</body>
</html>
Marquee Scrollamount:
In this example, the scroll amount is 10 which means it is used to measure the speed of the moving text.
<html>
<head>
<title>HTML Marquee Scrollamount Tag</title>
</head>
<body>
<marquee scrollamount ="10"> Welcome to our blog</marquee>
<body>
</html>
HTML Marquee Scrolldelay:
This tag is used to scroll the moving text slowly.
<html>
<head>
<title>HTML marquee scrolldelay Tag</title>
</head>
<body>
<marquee scrolldelay = "4">"Welcome to our blog</marquee>
</body>
</html>
HTML Marquee BGcolor:
In this example, we will see how to apply the background color to the text.Here we are using the BGcolor(Background color) is a pink color.
<html>
<head>
<title>HTML Marquee BGcolor</title>
</head>
<body>
<marquee bgcolor="pink">Welcome to our blog</marquee>
</body>
</html>
HTML Marquee Loop:
In this example we will see how many times the text has been moving.we can able to set the times of the tag by using the "LOOP".
<html>
<head>
<title>HTML marquee loop tag</title>
</head>
<body>
<marquee scrollamount ="10" loop="2">welcome to our blog</marquee>
<body>
</html>
Marquee slide:
<html>
<head>
<title>HTML Marquee slide</title>
</head>
<body>
<marquee Behaviour = "slide">welcome to our blog</marquee>
</body>
</html>
No comments:
Post a Comment