Open In App

How to create a clickable button in HTML ?

Last Updated : 18 Jun, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

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

Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads