HTML Button Generator

A button is an interactive HTML element that tells a browser to perform a programmable action.

Preview

Properties

Styling

Code

<button type="button" class="btn" name="myButton">
  My Button
</button>
CSS
.btn {
  width: 100px;
  height: 30px;
  border: 1px solid #444444;
  padding: 3px;
  margin: 0px;
  font-size: 12px;
  font-weight: normal;
  font-style: normal;
  color: #222222;
  background-color: #E3E3E3; 
}