To make a button link to another page in HTML, you can simply use the <button> element inside the anchor (<a>) element.

Example : the following example creates a button link to another webpage. #
<a href="https://example.com">
  <button>Click Me</button>
</a>

In the above example, we have added a <button> element inside an anchor element.