href sur un bouton
<button onclick="window.location.href='/page2'">Continue</button>
STIFLER
<button onclick="window.location.href='/page2'">Continue</button>
<button onclick="location.href='http://www.example.com'" type="button">
www.example.com</button>
<button class="btn btn-success" onclick="location.href='http://google.com';"> Google</button>
#open link from button
<input type="button" onclick="location.href='https://google.com';" value="Go to Google" />
<a href="https://google.com" class="button">Go to Google</a> //*button link *//
<!--
There are many ways, you can do it, but the best I think is that we will surrond a button
inside a link so that it would work like one!
-->
<a href="www.youtube.com">
<button>
Youtube
</button>
</a>