English
<!--The complete HTML code is as follows:--> <html> <head> <title></title> <script language="JavaScript"> //http://www.downcodes.com var msg="Welcome Come to the Website Building Academy, which provides a wealth of web technology knowledge..." 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>