HTML Input Button

The HTML Input Button tool creates and inserts the tag necessary to create an HTML input button. The following options are available via the tool:

Name: The value in this field is written to the "name" attribute of the created input tag.

Value: The value in this field is written to the "value" attribute of the created input tag.

Initial State: this determines whether or not the button is initally disabled.

Type: The tool provides the following options for type:

  • standard: this creates a stanard button input type
  • submit: this creates an HTML submit button input type
  • reset: this creates an HTML reset button input type

The following is an example of the output generated by the HTML input button tool:

<input type="button" value="button_value" name="button_name" disabled="disabled">

 

HTML Button Tool