How to create a clickable button in HTML ?
In this article, we will create a Button by using the <Button> Element in the Document.
It is used to submit the content. The images and text content can use inside a button tag.
Syntax:
<button type = "button">
Example: Using HTML <button> type Attribute
<!DOCTYPE html> < html > < head > < title > How to create a clickable button? </ title > </ head > < body > < center > < p > < h2 > GeeksForGeeks </ h2 > </ p > < h2 > HTML: How to create a clickable button? </ h2 > <!-- button tag starts from here --> < button type = "button" onclick = "alert('Welcome to GeeksforGeeks')" > Click Here </ button > <!-- button tag ends here --> </ body > </ html > |
Output:
Supported Browsers are listed below:
- Google Chrome
- Internet Explorer
- Firefox
- Opera
- Safari
Please Login to comment...