| Paste this section within the HEAD tags
<script language="javascript">
<!-- hide from old browsers
// Written & created by Shivaji Basu
// Copyright www.shivbasu.com
// Use this script at your own risk
// To use his script, you MUST leave this disclaimer & credit as it is
ie4 = (document.all)? true:false
function showit() {
if (ie4) {blinking.style.visibility = "visible"}
setTimeout("hideit()",1000)
}
function hideit() {
if (ie4) {blinking.style.visibility = "hidden"}
setTimeout("showit()",1000)
}
//-->
</script>
<!--This is the Style specification - feel free to change the font specs. -->
<style type="text/css">
<!--
#blinking{text-decoration:blink;font-family:tahoma,verdana,font-size:12px;color:#400000;
}
-->
</style>
Paste this part within the OPENING Body tag for Auto execute
<BODY onload="showit()" background="" bgcolor="" .....>
// Fill in the Background Image URL, BG color etc as normal
Paste this in the main Body
<DIV id="blinking">YOUR TEXT GOES HERE</DIV>'
|