网站地图    收藏   

主页 > 前端 > html教程 >

html 网页跳转代码_HTML/Xhtml_网页制作

来源:自学PHP网    时间:2014-12-15 15:59 作者: 阅读:

[导读] 将以下代码存为默认首页文件如index.html,放在根目录下即可。 不隐藏转向后地址 html head titleRedirect/title meta http-equiv=refresh content=0;url=new site /head body <...

将以下代码存为默认首页文件如index.html,放在根目录下即可。 不隐藏转向后地址 <html> <head> <title>Redirect</title> <meta http-equiv="refresh" content="0;url=new site"> </head> <body> <
将以下代码存为默认首页文件如index.html,放在根目录下即可。
不隐藏转向后地址
<html>
<head>
<title>Redirect</title>
<meta http-equiv="refresh" content="0;url=new site">
</head>
<body>
</body>
</html>
隐藏转向后地址
<html>
<head>
<title>Redirect</title>
</head>
<frameset framespacing="0" border="0" rows="0" frameborder="0">
<frame name="main" src="new site" scrolling="auto" noresize>
</frameset>
</html>

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论