Change Theme
Code Run
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Marquee Example</title> </head> <body> <marquee behavior="scroll" direction="left" scrollamount="5" scrolldelay="100" loop="3" bgcolor="yellow" width="50%" height="100px" hspace="20" vspace="10" onmouseover="this.stop();" onmouseout="this.start();" > This text will scroll from right to left. </marquee> </body> </html>