Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
<!DOCTYPE html> <title>My Example</title> <marquee behavior="scroll" direction="right" scrollamount="20" id="marquee1"> <p>Marquee 1</p> </marquee> <marquee behavior="scroll" direction="left" scrollamount="20" id="marquee2"> <p>Marquee 2</p> </marquee> <input type="button" value="Stop Marquee 1" onClick="document.getElementById('marquee1').stop();"> <input type="button" value="Start Marquee 1" onClick="document.getElementById('marquee1').start();"><br /> <input type="button" value="Stop Marquee 2" onClick="document.getElementById('marquee2').stop();"> <input type="button" value="Start Marquee 2" onClick="document.getElementById('marquee2').start();">