navigate to another html page using javascript code example
Example 1: javascript redirect
<script>
window.location.href = "http://mywebsite.com/home.html";
</script>
Example 2: js onclick redirect
<button onclick="location.href='www.yoursite.com'">Click Me</button>
Example 3: javascript redirect
window.location.href = "http://mywebsite.com/home.html";