Search This Blog

Showing posts with label HTML Marquee Tags. Show all posts
Showing posts with label HTML Marquee Tags. Show all posts

HTML Marquee Tag With Scrollamount Attribute Example

HTML Marquee Tag With Scrollamount Attribute Example :
<!doctype html>
<html>
<head>
<title> www.kod4u.blogspot.com </title>
</head>
<body>
<h2> Marquee Tag With Scrollamount Attribute Example </h2>

<marquee bgcolor="red" width="500" behavior="alternate" scrollamount="1000"> Marquee Direction </marquee>
<br/>
<p> In Marquee Scrollamount attribute can increase the floating text Speed </p>

</body>
</html>
OUTPUT

HTML Marquee Tag With Behavior Attribute Example

HTML Marquee Tag With Behavior Attribute Example :
<!doctype html>
<html>
<head>
<title> www.kod4u.blogspot.com </title>
</head>
<body>
<h2> Marquee Tag With Behavior Attribute Example </h2>

<marquee bgcolor="red" width="500" behavior="alternate"> <<< Marquee Direction >>> </marquee>
<br/>
<p> In Marquee Behavior attribute can float the text to right to left and left to right both </p>
</body>
</html>
OUTPUT

HTML Marquee Tag With Width Attribute Example

HTML Marquee Tag With Width Attribute Example :
<!doctype html>
<html>
<head>
<title> www.kod4u.blogspot.com </title>
</head>
<body>
<h2> Marquee Tag With Width Attribute Example </h2>
<marquee bgcolor="lightgreen" width="200"> Marquee Direction </marquee>
<br/>
<p> In Marquee Width attribute can change the floating width size with the marquee text </p>
</body>
</html>
OUTPUT

HTML Marquee Tag With Bgcolor Attribute Example

HTML Marquee Tag With Bgcolor Attribute Example :
<!doctype html>
<html>
<head>
<title> www.kod4u.blogspot.com </title>
</head>
<body>
<h2> Marquee Tag With Bgcolor Attribute Example </h2>

<marquee direction="right" bgcolor="lightgreen"> Marquee Direction Right Using Bgcolor </marquee>
<br/>
<p>In Marquee bgcolor attribute can change the text display background color </p>
</body>
</html>
OUTPUT

HTML Marquee Tag With Loop Attribute Example

HTML Marquee Tag With Loop Attribute Example :
<!doctype html>
<html>
<head>
<title> www.kod4u.blogspot.com </title>
</head>
<body>
<h2> Marquee Tag With Loop Attribute Example </h2>
<marquee direction="right" loop="1" > <font color="red">marquee direction right and loop </font></marquee>
<br/>
<p>
In Marquee Loop attribute can change the text display property like when we use loop=1 the only one time marquee can visible.
</p>
</body>
</html>
OUTPUT

HTML Marquee Tag With Direction Attribute Example

HTML Marquee Tag With Direction Attribute Example :
<!doctype html>
<html>
<head>
<title> www.kod4u.blogspot.com </title>
</head>
<body>
<center><h2> Marquee Tag With Direction Attribute Example </h2></center>
</br>
<marquee direction="right"> >>>>>>>Marquee Direction >>> Right >>>>> </marquee>
<br/>
<p>
In marquee direction attribute can change text float property like left to right.
</p>
</body>
</html>
OUTPUT

HTML Marquee Tag Example

HTML Marquee Tag Example :
<!doctype html>
<html>
<head>
<title> www.kod4u.blogspot.com </title>
</head>
<body>
<h2> Marquee Tag Example </h2>
<p>
<marquee> <<<<<< Example of marquee>>>>>> </marquee>
<br/>
Marquee can float the text. by default right to left
</p>
</body>
</html>
OUTPUT