This is the browser default button with absolutely no CSS. We only wrote the HTML:
<button>Click Me!</button>
color: red;
background-color: black;
width: 200px;
height: 50px;
border-color: red;
border-width: 5px;
border-style: solid;
border-radius: 7px;
font-size: 24px;
font-weight: 800;
font-family: "Courier New", monospace;
Font size:
Font weight:
Font family:
Minimal hover example: only background and text color change on hover.
button{
background-color: white;
}
button:hover{
color: white;
background-color: black;
}