1. Document Structure

HTML refers to the HTML (HyperText Markup Language) is using markup tags to describe web pages (WEB) of

structure:

<html>
  <head>
标题栏部分 
  </head>   
 
 <body>
页面内容部分
 </body>
</html>

<!-- 这是HTML中注释的写法 -->

Example:

<!DOCTYPE HTML><!-- 申明文档按照W3C的规范解析文档,不同的浏览器解析方式不同 ,可以理解成必须写,而且必须第一行-->
<html>
<head> 
  <title>页面标题</title>
  </head>	
  <body> <!-- body标签包含的区域为可见的页面内容 -->
<p>显示的文本段落,结束标签自带换行</p>
  </body>
</html>

 

Published 104 original articles · won praise 22 · views 40000 +

Guess you like

Origin blog.csdn.net/qq_41672557/article/details/105308372