首先,我先讲明head标签常见内容
<head>
<title>...</title>
<link>
<style>...</style>
<script>...</script>
<meta>
</head>
其次各标签不同用法
1.title用于显示网页的标题信息
<title>sunyifan</title>
显示网页上部标题
2.link链接一个外部样式表:通过外部样式改变html元素样式
eg:
<head>
<link rel="stylesheet" type="text/css" href="theme.css" />
</head>
3.style用于包含一些css样式代码
4.script则是用来插入javascript代码
5.meta元素可提供有关页面的元信息
eg:
<meta name="keywords" content="HTML,ASP,PHP,SQL">
name 属性对于进入搜索引擎的索引有帮助
<meta http-equiv="charset" content="iso-8859-1">
浏览器可以接受这些附加的头部字段,并能以适当的方式使用它们
网友评论