- What are the key advantages of learning HTML?
Create Web Site, Become a web designer, Understand web, Learn other languages
- What are the characteristics of HTML?
Easy to be understood, Flexibility, Linkable, Limitless features, Support
- Write the rules of using HTML tags(at least 5 points).
标签用尖括号 < 和 > 包裹, HTML 标签名不区分大小写, 遵循规范嵌套(如 < p> 内不能直接嵌套 < div>),
声明 < !DOCTYPE html>, self-closed tag不需要结束标签
- Write the rules of using tag attribute(at least 5 points).
属性值必须使用引号,属性名不区分大小写,避免重复属性,转义特殊字符(Escape special characters), 使用全局属性时要规范(如 id 唯一)
- Write the rules of naming HTML file(at least 5 points).
No special character,
Consist of character, number and _,
Case sensitive in some OS,
html is better than htm,
Home page should be named index.html or default.html