window redirect to another html page code example
Example 1: javascript redirect
window.location.href = "http://mywebsite.com/home.html";
Example 2: html redirect to another page
<script>
function foo() {
window.location.href = url
}
</script>