Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
<!DOCTYPE html> <title>My Example</title> <marquee behavior="scroll" direction="left" id="mymarquee"> <p>Go on... press the button!</p> </marquee> <input type="button" value="Stop Marquee" onClick="document.getElementById('mymarquee').stop();"> <input type="button" value="Start Marquee" onClick="document.getElementById('mymarquee').start();">