Code and Output for button:

Code:

    <!DOCTYPE html>
    <html>
    <head>
      <title>HTML Example</title>
    </head>
    <body>
    <h1>The button Element</h1>
  <button type="button" onclick="alert('Hello world!')">Click Me!</button>
    </body>
    </html>
  

Output:

The button Element