<!DOCTYPE html>
<html>
<head>
<title>Loading...</title>
<meta http-equiv="refresh" content="0; url=http://example.com">
<script>window.location.href = "http://example.com"</script>
</head>
<body>
<p>Not redirected? Go to <a href="https://example.com">example.com</a></p>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>HTML Meta Tag</title>
<meta http-equiv = "refresh" content = "2; url = https://www.tutorialspoint.com" />
</head>
<body>
<p>Hello HTML5!</p>
</body>
</html>
<meta http-equiv="Refresh" content="0; url=https://www.w3docs.com" />
<meta http-equiv="refresh" content="time; URL=new_url" />
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="refresh" content="0; url=https://website.com">
<title>Redirect</title>
</head>
<body>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="refresh" content="0;url=http://newdomain.com/">
</head>
<body>
</body>
</html>
<meta http-equiv="refresh" content="0; url=http://example.com">
<script>window.location.href = "http://example.com"</script>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv = "refresh" content = "0; url = https://www.example.com"/>
</head>
<body></body>
</html>
<script>
function foo() {
window.location.href = url
}
</script>
<meta http-equiv="refresh" content="5;url=http://example.com/" />