| <html>
<head>
<title>(Type a title for your page here)</title>
<STYLE>
.bigChange {color:blue; font-weight:bolder; font-size:175%; letter-spacing:4px;
text-transform: uppercase; background:yellow}
.start {color:yellow; background:navy}
</STYLE>
<SCRIPT LANGUAGE=JAVASCRIPT>
function highlightButton(s) {
if ("INPUT"==event.srcElement.tagName)
event.srcElement.className=s
}
</SCRIPT>
<body bgcolor="#ffffff" text="#000000"
link="#808040" vlink="#008040" alink="#008000"
>
<FORM NAME=highlight onmouseover="highlightButton('start')"
onmouseout="highlightButton('')">
<input type="button" value="Button 1">
<input type="button" onmousedown="this.style.fontStyle='italic'"
onmouseup="this.style.fontStyle=''" value="Click me"
onclick="this.value='You Clicked The Button'">
<input type="button" value="Button 3">
</FORM>
</body>
</html>
|