HTML Introduction
HTML Basic Syntax
HTML Block Element
HTML Formatting
HTML Quotation
HTML Links
HTML List
HTML Table
HTML Audio
HTML Video
HTML Image
HTML Iframe
HTML Favicon
HTML Form
HTML Input Types
HTML Marquee
HTML Meta tag
Learn CSS
Learn Javascript
Learn Django
This tag is one king of animation tag. This tag is used to create scrolling piece of text or image displayed
in the web page either horizontally or vertically.
Attributes:
behavior: This attribute have three values:
1.scroll(default)
2.slide:If we use this then animation will run only one time.
3.alternate: suppose the animation is going right to left. Now if we use this tag then animation will start by
touching the right side then will go to left and touch the left side and then again come back to right then
again left.This loop will run again and again.
scrollamount: We use this tag to control speed of animation.Pass numerical value like 1,10,12,8 etc.
direction:We use this property to change the animation direction.Values are right,left(default),up,down
scrolldelay:We use this property to change delay time of the animation.Pass numerical value.
loop:We use this attribute to control animation loop means how many times the animation will run.
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<marquee behavior="alternate">selftaught</marquee>
<marquee scrollamount="10">selftaught</marquee>
</body>
</html>