1、标题(title)
<head><title>HTML中文教程头部信息(head)之标题(title)说明</title></head>
2、链接(link)
<link rel="stylesheet" href="index.css" type="text/css">
3、样式(style)
<head>
<style>
body {background-color:white; color:black;
h1 {font: 18pt arial bold;}
</style>
</head>
4、关于网页信息(meta)
<meta name="description" content="这是指页面描述">
<meta name="keywords" content="这是指页面关键词">
<meta name="author" content="这是指作者">
5、Meta的Refresh自动跳转到指定页面
<html>
<head>
<meta http-equiv="Refresh"
content="5;url=http://www.blog286.com">
</head>
<body>
<p>
本站的地址是 <a href="http://www.blog286.com">http://www.blog286.com</a>。
</p>
<p>
如果在5秒钟后网页没有自动跳转,请点击上面的链接,进入博客学堂。
</p>
</body>
</html>
收藏和分享: