html script redirect to another page code example
Example 1: javascript redirect
window.location.href = "http://mywebsite.com/home.html";
Example 2: redirect html
<meta http-equiv="refresh" content="time; URL=new_url" />
Example 3: html redirect to another page
<script>
function foo() {
window.location.href = url
}
</script>