. Advertisement .
..3..
. Advertisement .
..4..
Can someone help me with some real samples to handle the topic “redirect page in html templates”. Thanks in advance for your help.
To redirect to a different page, use the META tag. With this, you need to provide an HTTP header for the content attribute’s value. The value in the content is the number of seconds; you want the page to redirect after. Set the content attribute to “0” to load instantly. Here is our Here is our suggestions:<!DOCTYPE html>
<html>
<head>
<title>HTML Meta Tag</title>
<meta http-equiv = "refresh" content = "1; url = https://www.ittutoria.net" />
</head>
<body>
<p>Hello HTML!!!</p>
</body>
</html>
1 Answer