How to Add Buttons Tag in HTML
buayaberdiri.blogspot.com - In html we can insert buttons, usually these buttons are used as login buttons, register buttons, exit buttons and others on a website or blog.
To make the button very easy, you can use the <button></button> tag.
Example of creating a button in html:
<button>Login</button>
In html the button tag has 3 types, namely submit, reset and disabled.
Whats Is The Submit Type on Button Tag ?
the submit type for the button tag is used to submit the form to the form-handler on the server.
<button type="submit">Submit</button>
Whats Is The Reset Type on Button Tag ?
In the button tag we will recognize the type of reset, the reset button is a button that is used to reset the form or return it to a form that has never been filled in.
<button type="reset">Reset</button>
Whats Is The Disabled Type on Button Tag ?
The disabled type of the button is an attribute that contains a boolean value (true or false).
The disabled button cannot be clicked, but with the help of javascript we can click on the specified conditions.
<button disabled="disabled">Disabled</button>