Result Size: 300 x 150
x
 
<!DOCTYPE html>
<html>
<head>
<style>
.button {
  background-color: #4CAF50;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}
</style>
</head>
<body>
<h2>CSS Кнопки</h2>
<button>Кнопка по умолчанию</button>
<a href="#" class="button">Кнопка ссылка</a>
<button class="button">Кнопка</button>
<input type="button" class="button" value="Кнопка ввода">
</body>
</html>