- A+
所属分类:Web前端
一、标签类语法
1、标签不能交叉嵌套
正确:
<div><span>hello</span></div>
错误:
<div><span>hello</div></span>
2、标签必须正确关闭
正确:
<div>hello</div>
错误:
<div>hello
3、没有文本内容的标签
正确:
<br/>1
错误:
<br>2
4、属性必须有值,属性值必须加引号
正确:
<font color ="blue">hello</font>
错误:
<font color =blue>hello</font>
错误:
<font color>hello</font>
5、注释不能嵌套
正确:
<!--注释内容--><br/>
错误:
<!--注释内容<!---注释内容-->--><hr/>
6、HTML书写规范
<!DOCTYPE html> <!-- 约束,声明 --> <html lang="zh_CN"> <!-- html标签表示html的开始 lang="zh_CN"表示中文--> <!-- html标签中一般分为两部分,分别是:head和body --> <head> <!-- 表示头部信息,一般包含三部分内容,title标签,css样式,js代码 --> <meta charset="UTF-8"> <!-- 表示当前页面使用UTF-8字符集 --> <title>某东</title> <!-- 表示标题 --> </head> <body> <!-- body标签是整个html页面显示的主题内容 --> hello </body> </html> <!-- html标签表示html的结束 -->