HTML Meta Tag For Page Redirect
Using a meta tag to redirect your site is very easy. After 5 seconds the page redirects to another page
Demo Page Redirect
Demo
Enter the URL of the page to redirect
second
HTML
How To Use Meta Tag To Redirect An HTML Page
The code shown below is an example of redirecting the current page to another page after 5 seconds
HTML Meta Tag
<meta http-equiv="refresh" content="5; url=https://www.html-code-generator.com/" />
HTML
<!DOCTYPE html>
<html>
<head>
<title>Redirect Meta Tag</title>
<meta http-equiv="refresh" content="5; url=https://www.html-code-generator.com/" />
</head>
<body>
<p>Your browser will automatically redirect you within 5 seconds.</p>
</body>
</html>