<input type="Submit" value="Submit" class="controls">The 'value' refers to the actual string displayed to the user; this can be anything.
The look of the Submit button is defined by the following lines in the CSS file:
input[type=submit] {
cursor: pointer;
float: right;
background: url(images/Submit.png) no-repeat 0 0;
width: 115px;
height: 45px;
margin: 0;
overflow: hidden;
padding: 32px 0 0 116px;
border: none;
}
input[type=submit]:active {
background: url(images/Submit_down.png) no-repeat 0 0;
}
In this part of the CSS, two background images are specified. They are assumed to be placed in a directory that is defined relative to the CSS file.