한국어
<!--완전한 HTML 코드는 다음과 같습니다:--> <html> <head> <title></title> <script 언어="JavaScript"> //http://www.downcodes.com var msg= "풍부한 웹 기술 지식을 제공하는 웹사이트 구축 아카데미에 오신 것을 환영합니다..." 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>