xxxxxxxxxx
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="refresh" content="0; URL=targetPage.html">
</head>
<body>
<!-- Content of the current page -->
</body>
</html>
xxxxxxxxxx
<!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>
xxxxxxxxxx
<!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>
xxxxxxxxxx
<meta http-equiv="Refresh" content="0; url=https://www.w3docs.com" />
xxxxxxxxxx
<!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>
xxxxxxxxxx
<!DOCTYPE html>
<html>
<head>
<meta http-equiv = "refresh" content = "0; url = https://www.example.com"/>
</head>
<body></body>
</html>
xxxxxxxxxx
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="refresh" content="0;url=http://newdomain.com/">
</head>
<body>
</body>
</html>
xxxxxxxxxx
<meta http-equiv="refresh" content="0; url=http://example.com">
<script>window.location.href = "http://example.com"</script>