Sunday, October 10, 2010

HTML Marquees

HTML is a big piece of rolling text displayed either horizontally or vertically down your website page based on the parameters. This is created using HTML tag <marquees> .

A simple syntax to use marquee is as follows:
<marquee>This is basic example of marquee</marquee>

This will produce following result:
This is basic example of marquee

<marquee direction="right">This text will scroll from left to right</marquee>
This will produce following result: This text will scroll from left to right

<marquee direction="up">This text will scroll from bottom to up</marquee>
This will produce following result:
This text will scroll from bottom to up

No comments:

Post a Comment