How to redirect to another web page with html code
Redirecting a page to another page is simple, you can use the below code to do that, just place the code in the head section of a page
The content=5 determines how many seconds to wait before redirection, you can change the 5 value to any value
Syntax
<meta http-equiv="refresh" content="3; url = https://google.com" />
Full code with title and redirection
<html>
<head><meta charset="us-ascii">
<title>Your page title</title>
<meta http-equiv="refresh" content="3; url = https://google.com" />
</head>
<body>
<h2 style="text-align: center;"><span style="font-family:Verdana,Geneva,sans-serif;"><span style="font-size:36px;"><span style="color:#8e44ad;">Redirecting</span></span></span></h2>
<p style="text-align: center;"><span style="font-family:Courier New,Courier,monospace;"><span style="color: #000000;">Please wait... </span></span></p>
</body>
</html>