html automatic redirect code example
Example 1: autoredirect html
<meta http-equiv = "refresh" content = "0; url = <Where you want it to go>" />
Example 2: html redirect to another page
<script>
function foo() {
window.location.href = url
}
</script>