Français
<!--Le code HTML complet est le suivant :--> <html> <head> <title></title> <script language="JavaScript"> //http://www.downcodes.com var msg= "Bienvenue Venez à la Website Building Academy, qui offre une richesse de connaissances en technologie 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>