'marquee' creates scrolling text : marquee « Tags « HTML / CSS






'marquee' creates scrolling text

 
    
<html>
<head>
<title>marquee element example</title>
</head>
<body>
    <center>
    <marquee behavior="slide" 
             direction="left" 
             width="800" 
             bgcolor="red"
             loop="50" 
             style="color:white">
             www.java2s.com
    </marquee>
    </center>
    <p>static text</p>
</body>
</html>
    
      
        
  








Related examples in the same category

1.Marquee Example