Editor Arrow Download Open
<html> <head> </head> <body> <marquee behavior="scroll" direction="left" scrollamount="10" id="marquee2"><p>Marquee 1</p></marquee> <marquee behavior="scroll" direction="left" scrollamount="15" id="marquee3"><p>Marquee 2</p></marquee> <input type="button" value="Stop Marquee 1" onClick="document.getElementById('marquee2').stop();"/> <input type="button" value="Start Marquee 1" onClick="document.getElementById('marquee2').start();"/><br /> <input type="button" value="Stop Marquee 2" onClick="document.getElementById('marquee3').stop();"/> <input type="button" value="Start Marquee 2" onClick="document.getElementById('marquee3').start();"/> </body> </html>
  Preview Arrow