Jump method: 1. Use meta tag, syntax ""; 2. With the help of js, in script Add "window.location="jump address"" code to the tag to jump.
The operating environment of this tutorial: windows7 system, javascript1.8.5&&HTML5 version, Dell G3 computer.
html method of redirecting the page
1. Use meta tag
<head> <meta http-equiv="refresh" content="5; url=https://www.php.cn/"> </head>
2. With the help of js
<script type="text/javascript"> window.location = "http://www.baidu.com"; </script>
Recommended tutorial: "html video tutorial"
The above is the detailed content of How to redirect the page in html. For more information, please follow other related articles on the PHP Chinese website!