1<button onclick="location.href='http://www.example.com'" type="button">
2 www.example.com</button>
1# Wrap whole button in a 'a' tag.
2 <a href="https://google.com" class="button"><button class="pixel">Button text</button></a>
1a.button {
2 -webkit-appearance: button;
3 -moz-appearance: button;
4 appearance: button;
5
6 text-decoration: none;
7 color: initial;
8}