HTML | Marquee loop attribute
The Marquee loop attribute in HTML is used to define the number of time marquee should loop. The default value of loop is INFINITE.
Syntax:
<marquee loop="number" >
Attribute value:
- number: Specify the number of loop.
Example:
html
<!DOCTYPE html> < html > < head > < title >HTML Marquee loop attribute </ title > < style > .main { text-align: center; font-family: "Times New Roman"; } .marq { padding-top: 30px; padding-bottom: 30px; } .geek1 { font-size: 36px; font-weight: bold; color: white; text-align: center; } .geek2 { text-align: center; } </ style > </ head > < body > < div class = "main" > < marquee class = "marq" bgcolor = "Green" direction = "up" loop = "1" > < div class = "geek1" >GeeksforGeeks</ div > < div class = "geek2" > A computer science portal for geeks </ div > </ marquee > < marquee class = "marq" bgcolor = "Green" direction = "up" loop = "2" > < div class = "geek1" >GeeksforGeeks</ div > < div class = "geek2" > A computer science portal for geeks </ div > </ marquee > </ div > </ body > </ html > |
Output:
Supported Browsers: The browsers supported by HTML Marquee loop attribute are listed below:
- Google Chrome
- Internet Explorer
- Firefox
- Apple Safari
- Opera