<html>
<head>
<style>
.button {
background-color: #4CAF50;
border: none;
color: white;
padding: 15px 25px;
text-align: center;
font-size: 16px;
cursor: pointer;
}
.button:hover {
background-color: green;
}
</style>
</head>
<body>
<h2>CSS Button</h2>
<button>Default Button</button>
<button class="button">Styled Button</button>
</body>
<!-- Mirrored from www.w3schools.com/tags/tryit.asp?filename=tryhtml_button_css by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 27 Jan 2020 02:58:59 GMT -->
</html>