SyntaxStudy
Sign Up
Home HTML Reference <button>

<button>

tag

Represents a clickable button. Can contain HTML unlike <input type="button">.

Syntax

<button type="submit|reset|button">Click me</button>

Example

html
<!-- Submit form -->
<button type="submit">Submit Form</button>

<!-- Reset form -->
<button type="reset">Reset</button>

<!-- JS action -->
<button type="button" onclick="doSomething()">Click Me</button>