Skip to main content

Posts

Showing posts with the label Marquee.

Adding Marquee tag in HTML5 and CSS3.

This post is about adding Marquee Tag in html. The HTML marquee tag is used for scrolling piece of text or image displayed either horizontally across or vertically down your web site page depending on the settings. <!DOCTYPE html> <html> <head>   <title> Marquee Tag </title> </head> <body>   <marquee bgcolor="#eeeeee" direction="right" scrollamount="10" width="100%" height="20">       GimiBits!   </marquee><br>   <p>   <marquee bgcolor="skyblue" direction="down" scrollamount="5" width="49%" height="500">     <center>C</center>     <center>C++</center>     <center>Java</center>   </marquee>   <marquee bgcolor="skyblue" direction="up" scrollamount="5" width="49%" height="500"> ...