文章目录
一,标签集合
二,<head>中常见子元素的含义
-
说明HTML文档一些要素,告诉浏览器如何解析。
-
告诉搜索引擎本文档相关的内容。(seo)
1.<head>
2.<title>典型的head</title>
3.<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
4.<meta name="author" content="zhangsan">
5.<meta http-equiv="pragma" content="no-cache">
6.<meta http-equiv="cache-control" content="no-cache">
7.<meta http-equiv="expires" content="0">
8.<meta name="keywords" content=“JAVA,学习,培训 ">
9.<meta name="description " content=“关于北京地区java培训的介绍">
10.<meta http-equiv="refresh" content="5;URL=http://www.163.com">
11.<link rel="stylesheet" type="text/css" href="css/pagination.css" />
12.<script type="text/javascript" src="js/search.js"></script>
13.</head>
三,标题标记<hx>
<h1>、<h2>、 <h3>…,作为标题使用,并且依据重要性递减。<h1>是最高的等级。例如:
<h1>文档标题</h1>
<h2>次级标题</h2>
搜索引擎比较重视<hx>标记中的内容。
四,文本标记<b><i><u><del>
<b> 粗体显示
<i&g