HTML Marquee





An HTML marquee is a scrolling piece of text displayed either horizontally across or vertically down your web page depending on the settings. This is created by using HTML <marquees> tag.
A simple syntax to use HTML <marquee> tag is as follows −
<marquee attribute_name = "attribute_value"....more attributes>
   One or more lines or text message or image
</marquee>
Example:
<!DOCTYPE html>
<html>

   <head>
      <title>HTML marquee Tag</title>
   </head>

   <body>
      <marquee direction = "right">This text will scroll from left to right</marquee>
   </body>
 
</html>
loading...

No comments:

Powered by Blogger.