xxxxxxxxxx
You can make <button> tag to do action like this:
<a href="http://www.google.com/">
<button>Visit Google</button>
</a>
or:
<a href="http://www.google.com/">
<input type="button" value="Visit Google" />
</a>
It's simple and no javascript required!
xxxxxxxxxx
<!DOCTYPE html>
<html>
<head>
<title>Button Redirect Example</title>
</head>
<body>
<button onclick="location.href='https://example.com';">Redirect</button>
</body>
</html>