html change input submit text code example
Example 1: html submit button
<input type="submit" value="Submit">
Example 2: how to increase size of input submit type in html
input[type=submit] {
width: 20em; height: 2em;
}
<input type="submit" value="Submit">
input[type=submit] {
width: 20em; height: 2em;
}