HTML的head与meta

重定向跳转页面如下:

元信息: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>
原文地址:https://www.cnblogs.com/daimaku/p/4189084.html