How to get a moving/fly text using marquee tag in html- tutorial + sample code.
marquee tag is used in html to make moving text
<marquee>your text goes here </marquee>
Marquee tag comes with some attributes like :
direction - specify the direction in which the text scroll
behavior - specifies the type of scrolling. Example- scroll, slid and alternate.
loop - specifies the number of time text/image will scroll.
upwards:
Right:
Alternate:
Down:
marquee tag is used in html to make moving text
<marquee>your text goes here </marquee>
Marquee tag comes with some attributes like :
direction - specify the direction in which the text scroll
behavior - specifies the type of scrolling. Example- scroll, slid and alternate.
loop - specifies the number of time text/image will scroll.
upwards:
<marquee direction="up">Techie-Touch</marquee>
Right:
<marquee direction="right">Techie-Touch</marquee>
Alternate:
<marquee direction="alternate">Techie-Touch</marquee>
Down:
<marquee direction=down">Techie-Touch</marquee>
0 comments:
Post a Comment