1. HTML发明者
李爵士
2. HTML起手写什么
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>document</title>
</head>
<body>
</body>
</html>
3. 常用的表示章节的标签
- h1~h6表示标题
- section表示章节
- article表示文章
- main表示主要内容
- aside表示旁支内容
- header表示头部
- footer表示脚部
- p表示段落
4. 全局属性
全局属性有id、class、title、hidden、style、contenteditable、tabindex
5. 常用的内容标签
- ol + li 有序列表
- ul + li 无序列表
- dl + dt + dd 描述列表
- pre 包裹预格式化文本
- hr 水平线
- br 换行
- code 代码
- q 行内引用
- blockquote 块级引用
- em 强调,
- strong 重要
- a 超文本链接
网友评论