Blogger Information
Blog 29
fans 0
comment 0
visits 19657
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
HTML文档的基本结构-2019年7月2日
blog
Original
527 people have browsed it

在学习一门语言之前,我们有必要去去了解他的基本结构,这样在之后的学习中可以起到事半功倍的效果,本篇就HTML文档的基本结构进行总结.

实例

<!DOCTYPE html>  <!--文档类型-->
<html lang="en">  <!--文档根元素 lang设置了该文档内容使用的语言-->
<!--文档头部,除标题外,其余内容对用户不可见,供浏览器和搜索引擎读取-->
<head>
    <meta charset="UTF-8"> <!--charset 设置了编码方式-->
    <title>文档标题</title>
</head>
<!--文档主体-->
<h1>Hello World</h1>
<body>
</body>
</html>

运行实例 »

点击 "运行实例" 按钮查看在线实例

上述代码中涉及知识点注释总结:

1.<html lang="en">   lang设置了该文档内容使用的语言,该属性非必需,也可改成zh-cn

2.<meta charset="UTF-8"> charset 设置了html文档的编码集

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post