9.5 Input Button

Setting the value of the attribute type to button allows custom buttons to be made for use in forms. The value attribute is used in conjunction with this to specify what we want the button to say. For example:

<form>
<input type="button" value="Hello world!">
</form>

This would look like this in a browser (try clicking the button):