Example
A clickable button is marked up as follows:Teach Yourself by BH24 HTML Editor Tool!<button type="button">Click Me!</button>
The <button> tag is supported in all major browsers.
Definition and Usage
The <button> tag defines a clickable button.Inside a <button> element you can put content, like text or images. This is the difference between this element and buttons created with the <input> element.
Tip: Always specify the type attribute for a <button> element. Different browsers use different default types for the <button> element.