Button tag
<button>
tag:
The
<button>
tag creates a clickable button having some text.
<button type="button">Click Me!</button>
The
<button>
contains the following attributes
Attribute | Value | Definition |
autofocus | Boolean Attribute | Specifies that a button should automatically get focus when the page loads |
disabled | Boolean Attribute | Specifies that a button should be disabled |
form | form_ tag's name attrbute's value | Specifies which form the button belongs to |
Comments
Post a Comment