Advertisement
ziyas

marquee title

Dec 21st, 2021
4,251
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 1 0
  1. <!--- at the end of ur title make sure its a space or it will look weird --->
  2.  
  3. <html lang="en">
  4. <head>
  5. <meta charset="UTF-8">
  6. <title>argh!</title>
  7. <script type="text/javascript">
  8. message = "i can make u dance around me like a hula hoop! ";
  9. function step() {
  10. message = message.substr(1) + message.substr(0,1);
  11. document.title = message.substr(0,15);
  12. }
  13. </script>
  14. </head>
  15. <body onload="setInterval(step,100)">
  16. </body>
  17. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement