HTML Tutorial

The language for building web pages.

HTML Buttons

HTML Buttons

The <button> element defines a clickable button. Inside a button element you can put text, images, or other HTML elements. This is the difference from buttons created with the <input> element.

Button Types:

  • type="button" - Clickable button
  • type="submit" - Submits a form (default)
  • type="reset" - Resets form fields

Try It Yourself

Edit the code below and click Run to see the result live.

Source Code
Result
Topics