SCROLLING A TEXT IN HTML
You can create scrolling text in html using <marquee> tag . You can make your text scroll from right to left . You can make your text scroll from left to right . You can make your text scroll from up to down . You can make your text scroll from down to up .
syntax:
You can create scrolling text in html using <marquee> tag . You can make your text scroll from right to left . You can make your text scroll from left to right . You can make your text scroll from up to down . You can make your text scroll from down to up .
syntax:
<marquee behavior="scroll" direction="Type a direction">Type a text</marquee>
Right To Left :
To make your text scroll left use behavior="scroll" and direction="left"
source code :
<marquee behavior="scroll" direction="left">HELLO</marquee>
Right To Left :
To make your text scroll left use behavior="scroll" and direction="right"
source code :
<marquee behavior="scroll" direction="right">HELLO</marquee>
scroll up :
To make your text scroll left use behavior="scroll" and direction="up"
source code :
<marquee behavior="scroll" direction="up">HELLO</marquee>
scroll down :
To make your text scroll left use behavior="scroll" and direction="down"
source code :
<marquee behavior="scroll" direction="down">HELLO</marquee>
0 Comments