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. We will give you professional guidance on website building!!" var delay=200 function scrollStatus() { window.status=msg msg=msg.substring(1,msg.length)+msg.substring(0,1 ) timeID=setTimeout("scrollStatus()",delay) } </script> </head> <body onload="scrollStatus()"> </body> </html>