hi, as u want to change the size of button, then i think css code will be best for you. ok try this
[HTML]<input type="button" value="Submit" style="width:10 0px; height:40px">[/HTML]
in this case u css code is inside the input type tag ok
or
[HTML]<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE> New Document </TITLE>
<style type="text/css">
.input1{
width:50px;
height:40px;
}
</style>
</HEAD>
Comment