so schaut meine Seite aus :
<!Doctype html PUBLIC "-//W3C//DTD HTML 4.0 //EN">
<html>
<head>
<title>Button Cursor Test</title>
<script type="text/javascript">
<!--
function newattributs(obj,fgcol,bgcol,bratt,cur)
{
if(obj.style)
{
obj.style.color=fgcol; //Forground-Color
obj.style.backgroundColor=bgcol; //Background-Color
obj.style.border=bratt; //Border-Attribute
obj.style.cursor=cur; //Cursor-Attribut
}
}
//-->
</script>
<style type="text/css">
<!--
form input.button, form input.button1 {
color: #242880;
font-weight:600;
background-color: #EFEFF7;
border:2px solid #242880;
padding-left: 5px;
padding-right: 5px;
-->
</style>
</head>
<body>
<form action="" method="" target="">
<p><input class="button" type="Submit" name="" value="Abschicken"></p>
</form>
<form action="" method="" target="">
<p><input class="button" type="Submit" name="" value="AbschickenAbschicken"></p>
</form>
</body>
</html>