1.HTML 是谁发明的
Tim Berners-Lee
2.HTML 起手应该写什么
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
</body>
</html>
3.常用的表章节的标签有哪些,分别是什么意思
h1~h6标题
section章节
article文章
main主体
aside侧边
p段落
header顶部
footer底部
div分区
4.全局属性有哪些
class
hidden
style
tabindex
title
id
contenteditable
5.常用的内容标签有哪些,分别是什么意思
a链接
strong加粗强调
em斜体强调
code代码
pre 保留格式
ol+li有序列表
ul+li无序列表
quote引用
blockquote换行缩进引用
hr分割线
br换行
dl+dt+dd解释说明