Result Size: 300 x 150
x
 
<!DOCTYPE html>
<html>
<head>
<style>
a:link, a:visited {
  background-color: #f44336;
  color: white;
  padding: 14px 25px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}
a:hover, a:active {
  background-color: red;
}
</style>
</head>
<body>
<h2>Ссылка в виде кнопки</h2>
<p>Ссылка стилизуется в виде кнопки:</p>
<a href="index.html" target="_blank">Это ссылка</a>
</body>
</html>