how to make a button link to a new page html code example
Example 1: html button link
<button><a href='https://google.com' alt='Broken Link'>This is a button</a></button>
Example 2: how to add button to open a website using html
<button onclick="window.open('http://www.example.com')">
</button>