Forum Moderators: open
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<FORM METHOD="LINK" ACTION="http://www.example.com/about.html">
<INPUT TYPE="submit" VALUE="Click here to schedule a complimentary evaluation">
</FORM>
I looked on the Web for other examples to make a simple HTML button, but this was all I found.
Is there a way to fix this for IE or can someone suggest different button code?
example:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
<style type="text/css">
<!--
.style1 {
background-image: url(buttonbackgroundimage);
height: 30px;
width: 60px;
}
-->
</style>
</head>
<body>
<form id="form1" name="form1" method="post" action="">
<label>
<input name="Submit" type="submit" class="style1" value="Submit" />
</label>
</form>
</body>
</html>