1<marquee width="240%" direction="left" height="100px">
2This is a sample scrolling text that has scrolls texts to left.
3</marquee>
1<!DOCTYPE html>
2<html>
3
4 <head>
5 <title>HTML marquee Tag</title>
6 </head>
7
8 <body>
9 <marquee>This is basic example of marquee</marquee>
10 <marquee direction = "up">The direction of text will be from bottom to top.</marquee>
11 </body>
12
13</html>
1<!DOCTYPE html>
2<html>
3
4 <head>
5 <title>HTML marquee Tag</title>
6 </head>
7
8 <body>
9 <marquee>This is basic example of marquee</marquee>
10 </body>
11
12</html>
1<!DOCTYPE html>
2<html>
3
4 <head>
5 <title>HTML marquee Tag</title>
6 </head>
7
8 <body>
9 <marquee>This is basic example of marquee This is basic example of marquee This is basic example of marquee This is basic example of marquee This is basic example of marquee</marquee>
10 <marquee direction = "up">The direction of text will be from bottom to top.</marquee>
11 </body>
12
13</html>