Português
<!--O código HTML completo é o seguinte:--> <html> <head> <title></title> <script language="JavaScript"> //http://www.downcodes.com var msg= "Bem-vindo à Website Building Academy, que oferece uma riqueza de conhecimento em tecnologia da web..." var delay=200 function scrollTitle() { window.document.title=msg msg=msg.substring(1,msg.length)+ msg.substring(0 ,1) timeID=setTimeout("scrollTitle()",delay) } </script> </head> <body onload="scrollTitle()"> </body> </html>