html学习

1
2
HTML5 声明
不区分大小写

HTML骨架

1
2
3
4
5
6
7
8
9
10
11
<!Doctype html>
<html>
<head>
<meta charset="utf-8">
<title>HTML骨架</title>
</head>
<body>
<h1>标题</h1>
<p1>段落</p1>
</body>
</html>

HTML标签

推荐使用小写

  • meta
    1
    2
    The <meta> tag provides metadata about the HTML document. Metadata will not be displayed on the page, but will be machine parsable.
    The metadata can be used by browsers (how to display content or reload page), search engines (keywords), or other web services

meta标签有两个属性,http-equiv和name属性,详细参考博客园 HTML meta标签总结与属性使用介绍