|
Sorry if this doesn't work but try just doing
<input type="button" value="whatever">
or if it is a submit button it'd be better to just make it
<input type="submit" value="submit">
Lastly you can do what i like to do which is to go on to some sort of program like photoshop, design the button and put it as an image. Then you can do the following:
<img src="button1.gif" onClick="func1 ()">
Then in your heading tags put the following code
<script type="text/javascript">
function func1 ()
{
window.location("whereveryouwanttodirectto.html");
}
</script>
where i put "window.location..." you can put any code of which you want to execute.
|