<html> <head> <script type="text/javascript"> txtsize=0; maxsize=100; function writemsg() { if(txtsize<maxsize) { document.getElementById('msg').style.fontSize=txtsize; txtsize++; timer=setTimeout("writemsg()",10); } } function stoptimer() { claerTimeout(timer); } </script> </head> <body onload="writemsg()" onunload="stoptimer()"> <p id="msg">ANNAMALAI UNIVERSITY</p> </body> </html>