Blogger Information
Blog 8
fans 0
comment 1
visits 5004
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
HTML文档结构
BARRY
Original
662 people have browsed it

HTML文档结构

  1. <!DOCTYPE html>是HTML5标准网页声明,声明位于文档中的最前面的位置.

  2. <html lang="en">...</html>根标签,代表整个HTML文档,lang属性是language的简写,表示当前页面的主要语言。

  3. <head>...</head>头元素标签,他的内容不再页面中显示。
    <mate>标签,提供了 HTML 文档的元数据(描述HTML的数据,比如,作者,和描述文档的重要关键词)。<meta charset="UTF-8" /> 当前文档字符编码集。
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />中的name=“viewport”,viewport视口,表示当前文档在浏览器中被用户看到的内容。initial-scale=1.0表示不缩放,width=device-width,当前浏览器设备宽度。
    <title>标签,可以用来给 html 文档添加一个标题,一个 HTML 文档中不能有一个以上的 <title> 元素。

4.<body></body> 主体标签,通常我们在浏览器中看到的内容体都是在该标签内的。该标签元素包含文档的所有内容(比如文本、超链接、图像、表格和列表等等)。

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>Document</title>
  7. </head>
  8. <body>
  9. <!-- 段落元素 用‘<p>...</p>’标签来描述 -->
  10. <!-- block是块元素 -->
  11. <style>
  12. p {
  13. color: blue;
  14. display: block;
  15. }
  16. </style>
  17. <p style="color: red;">好好学习PHP</p>
  18. <!-- 三大通用属性有 style ,id ,class -->
  19. <p>哈哈哈哈</p>
  20. <!-- 无序列表 -->
  21. <ul>
  22. <li>hallo php</li>
  23. <li>hallo java</li>
  24. <li>hallo pathon</li>
  25. </ul>
  26. <!-- 换行符</br>,换行符属于单标签 -->
  27. <br />
  28. <!-- 有序列表 -->
  29. <ol>
  30. <li>你好 PHP</li>
  31. <li>你好 java</li>
  32. <li>你好 pathon</li>
  33. </ol>
  34. </body>
  35. </html>

运行结果:

  1. <!-- html:结构化使用标签描述文档 -->
  2. <div style="margin-left: 50px; font-size: 50px;">
  3. <p>
  4. <span>
  5. <a href="https://baidu.com">百度</a>
  6. </span>
  7. </p>
  8. </div>

运行结果:

  1. <!-- 通用的块元素<div>...</div> -->
  2. <div style="background-color: orange; margin-left: 50px; height: 300px;">
  3. <!--通用的行内元素 <span>..</span> -->
  4. <span style="margin-right: 100px; background-color: orchid;"
  5. >我是行级元素1</span
  6. >
  7. <span style="background-color: greenyellow; margin-right: 100px;"
  8. >我是行级元素2</span
  9. >
  10. <!-- <a>...</a>标签也是行内元素 -->
  11. <a href="">百度</a>
  12. <!-- <p></p>标签是段落元素 -->
  13. <p>小白</p>
  14. <img src="lbxx.jpg" alt="" />
  15. </div>

运行结果

Correcting teacher:天蓬老师天蓬老师

Correction status:qualified

Teacher's comments:看上去应该是没有完成, 当天的作业, 尽可能写到一个博客中
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