how to use onclick in html to another page code example
Example 1: js onclick redirect
<button onclick="location.href='www.yoursite.com'">Click Me</button>
Example 2: onclick url
<button onclick="location.href='logout.php';">logout</button>
<button onclick="location.href='www.yoursite.com'">Click Me</button>
<button onclick="location.href='logout.php';">logout</button>