0
How do I use the tag <button>?
2 Answers
+ 2
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.
eg:- <body>
<button type="button" onclick="alert('Hello world!')">Click Me!</button>
</body>
+ 1
Thank you