Blogger Information
Blog 1
fans 0
comment 0
visits 398
Related recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
html 的结构和标签属性和值
xsl
Original
398 people have browsed it

html结构

  1. <!-- 文档类型 -->
  2. <!DOCTYPE html>
  3. <!-- 根标签 包住所有 -->
  4. <html lang="en">
  5. <!-- 头部信息 用户看不见 -->
  6. <head>
  7. <!-- 字符 -->
  8. <meta charset="UTF-8">
  9. <!-- 移动端 -->
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <!-- 网页标题 -->
  12. <title>Document</title>
  13. <style>
  14. .asd {
  15. width: 100px;
  16. height: 100px;
  17. background: red;
  18. color: green;
  19. font-size: 16px;
  20. }
  21. </style>
  22. </head>
  23. <!-- 网页内容 -->
  24. <body>
  25. <!-- 双标签 文本-->
  26. <div class="asd">aaaa</div>
  27. <a href='xx/aa.html'>按钮</a>
  28. <!-- 但标签 引用资源-->
  29. <img src='xx/aa.png'>
  30. <hr>
  31. </body>
  32. </html>

html属性和值

  1. <!-- class是属性 asd是值 -->
  2. <div class="asd"></div>
Correcting teacher:天蓬老师天蓬老师

Correction status:unqualified

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