<meta http-equiv="refresh" content="3; URL='home.html'" />
You can also do it by adding some script
<script>
var timer = setTimeout(function() {
window.location='home.html'
}, 3000);
</script>
In PHP Header Redirect
header("Location: http://localhost.com");