how to call a page on button click in html code example
Example 1: js onclick redirect
<button onclick="location.href='www.yoursite.com'">Click Me</button>
Example 2: how to go to index page on clicking a button in html
<input type=button onClick="parent.location='index.html'" value='click here'>