Title Writer
Look in the Title Bar (If you missed it, reload the page).
Instructions:
1: Copy and paste the following script in the HEAD section of your page:
Select all...
<script language="javascript"> var titletext="Hello, Welcome to my website!"; // TITLEBAR TEXT var repeat=true; // SET TO true TO REPEAT, false TO "TYPE" OUT TITLE ONLY ONCE. var index=0; function scrolltitle(){ if(index<=titletext.length){ document.title=titletext.substring(0,index); index++; setTimeout('scrolltitle()', 200); }else{ index=0; if(repeat)setTimeout('scrolltitle()',1000); }} window.onload=function(){ if(!document.layers)setTimeout('scrolltitle()',1000); } </script>
2: Edit the settings in the script.