HTML code help

windows

Guest
How can I get the text at the bottom of the browser to be changed? I see some sites also have the words scroll out like G... GO... GOA....GOAL.....GOAL! Any help is greatly appreciated.<!--content-->Hi there MysticalMoon,<br />
<br />
Do you want something really silly like this....:rolleyes: <html><br />
<head><br />
<style type="text/css"><br />
<!--<br />
table<br />
{<br />
border-style:double;<br />
border-width:6px;<br />
border-color:#000000;<br />
background-color:#808080;<br />
font-family:comic sans ms;<br />
font-size:16px;<br />
color:#ffffff;<br />
padding:4px;<br />
}<br />
//--><br />
</style><br />
<script type="text/javascript"><br />
<!-- <br />
var message = new Array()<br />
message[0] = "";<br />
var reps = 2;<br />
var speed = 200; <br />
var p = message.length;<br />
var T = "";<br />
var C = 0;<br />
var mC = 0;<br />
var s = 0;<br />
var sT = null;<br />
if (reps < 1) reps = 1;<br />
<br />
function doTheThing() <br />
{<br />
T = message[mC];<br />
A();<br />
}<br />
<br />
function A() {<br />
s++;<br />
if (s > 36) { s = 1;}<br />
<br />
if (s == 1) { document.title = '*'+T+''; }<br />
if (s == 2) { document.title = '**'+T+''; }<br />
if (s == 3) { document.title = '***'+T+''; }<br />
if (s == 4) { document.title = '****'+T+''; }<br />
if (s == 5) { document.title = '*****'+T+''; }<br />
if (s == 6) { document.title = '******'+T+''; }<br />
if (s == 7) { document.title = '*******'+T+''; }<br />
if (s == 8) { document.title = '********'+T+''; }<br />
if (s == 9) { document.title = '*********'+T+''; }<br />
if (s == 10) { document.title = '**********'+T+''; }<br />
if (s == 11) { document.title = '***********'+T+''; }<br />
if (s == 12) { document.title = '************'+T+''; }<br />
if (s == 13) { document.title = '*************'+T+''; }<br />
if (s == 14) { document.title = '**************'+T+''; }<br />
if (s == 15) { document.title = '***************'+T+''; }<br />
if (s == 16) { document.title = '****************'+T+''; }<br />
if (s == 17) { document.title = '***MysticalMoon***'+T+''; }<br />
if (s == 18) { document.title = '***MysticalMoon***'+T+''; }<br />
if (s == 19) { document.title = '***MysticalMoon***'+T+''; }<br />
if (s == 20) { document.title = '***MysticalMoon***'+T+''; }<br />
if (s == 21) { document.title = '***MysticalMoon***'+T+''; }<br />
if (s == 22) { document.title = '***ysticalMoo***'+T+''; }<br />
if (s == 23) { document.title = '***sticalMo***'+T+''; }<br />
if (s == 24) { document.title = '***ticalM***'+T+''; }<br />
if (s == 25) { document.title = '***ical***'+T+''; }<br />
if (s == 26) { document.title = '***ca***'+T+''; }<br />
if (s == 27) { document.title = '*******'+T+''; }<br />
if (s == 28) { document.title = '******'+T+''; }<br />
if (s == 29) { document.title = '****'+T+''; }<br />
if (s == 30) { document.title = '**'+T+''; }<br />
if (s == 31) { document.title = '*'+T+''; }<br />
if (s == 32) { document.title = '$'+T+''; }<br />
if (s == 33) { document.title = '*'+T+''; }<br />
if (s == 34) { document.title = '$'+T+''; }<br />
if (s == 35) { document.title = '*'+T+''; }<br />
if (s == 3) { document.title = '$'+T+''; }<br />
<br />
if (C < (36 * reps)) <br />
{<br />
sT = setTimeout("A()", speed);<br />
C++;<br />
}<br />
else <br />
{<br />
C = 0;<br />
s = 0;<br />
mC++;<br />
if(mC > p - 1) mC = 0;<br />
sT = null;<br />
doTheThing();<br />
}<br />
}<br />
doTheThing();<br />
// --><br />
</script><br />
</head><br />
<body><table align="center" ><tr><td align="center"><br />
Look up....look down</td></tr></table><br />
</body><br />
</html><br />
coothead<!--content-->
 
Back
Top