I dont have much experience with javascript. Please provide javascript to create something like the image below:
[IMG]http://www.coolmicroscope.com/java.jpg[/IMG]
Things I can't workout are:
1. top and bottom background colors as the above image
2. add two text
3. border color same as top background color
"data:text/html,<html>¶
<head>
<script type='text/javascript'>
function blinkIt() {
if (!document.all) return;
else {
for(i=0;i<document.all.tags('blink').length;i++){
s=document.all.tags('blink')[i];
s.style.visibility=(s.style.visibility=='visible')?'hidden':'visible';
}
}
}
</script>
<style>
html, body {
height: 100%;
width: 100%;
}
body
{
margin : 0px 0px 0px 0px;
border : 0px;
}
table
{
border-collapse: collapse;
width : 100%;
height : 100%;
}
td {
text-align: center;
vertical-align : top;
font: bold 11px arial;
color:rgb(" & TextColour & ");
background-color:rgb(" & BackgroundColour & ");
}
</style>
</head>
<body onload=\"setInterval('blinkIt()',500)\">¶
<table><tr><td><blink>¶"
& Text &
"</td></tr></table></blink>¶
</body>¶
</html>"