1、网页链接图标
<link rel="shortcut icon" type="image/x-icon" href=""/>
2、标签语义化
①一个页面只能有一个h1标签
②h1-h6之间不要断层
③不要用div代替h1-h6
3、图片语义化
①alt属性,使搜索引擎知道图片内容❤❤❤
②title属性,给用户看的图片描述
③figure元素包含图片和图注,figcaption包含图注
4、表格语义化
<table>
<caption>标题</caption>
<thead>
<tr>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<td></td>
</tr>
</tbody>
<tfoot>
<tr>
<td></td>
</tr>
</tfoot>
</table>
5、表单语义化
①label标签
<label for="name">用户名</label><input type="text" name="name" id="name"/>
②fieldset与legend标签
6、<br/>只用于段落间的换行,即p标签内。不用于元素间间距设置。
7、img标签和backgroung-image区别:
如果图片仅仅起修饰作用,不用被检索到,则用做背景;否则用img标签爱、。