how to create a button and link it to another website code example
Example 1: how to add button to open a website using html
<button onclick="window.open('http://www.example.com')">
</button>
Example 2: how to link a button to another page in css
<button onclick="window.location.href='/page2'">Continue</button>