HTML的head与meta

时间:2014-12-27 20:17:27   收藏:0   阅读:415

重定向跳转页面如下:

技术分享

元信息:meta
连接的默认跳转方式:<base target="">
文档描述:<meta name="description" content="">
文档关键字:<meta name="keywords" content="">
重定向:<meta http-equiv="Refresh" content=" ;url=">

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
<base target="_blank">
<meta name="description" content="java学习">
<meta name="keywords" content="java,android">
<meta http-equiv="Refresh" content="3;url=http://baidu.com">
</head>
<body>
    <a href="http://www.baidu.com/" >猎豹导航</a>
    <p>3秒后跳到百度</p>
</body>
</html>

 

原文:http://www.cnblogs.com/daimaku/p/4189084.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!