Blogger Information
Blog 3
fans 0
comment 0
visits 1420
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
安装vscode及插件,使用markdown,html标签含义
党壮
Original
418 people have browsed it

一级标签

二级标签

三级标签以此类推

插件

表格制作

1 2 3 1 2 3
1 2 3 1 2 3
1 2 3 1 2 3

代码高亮(代码块)

···

有序列表,无序列表

  • 无序列表
    • 二级
      • 三级
  1. 有序列表
    1. 有序列表
      1. 2

代码标签含义标注

  1. <!-- html浏览器标识,告诉浏览器这是个html文本 -->
  2. <!DOCTYPE html>
  3. <!-- lang是页面语言 -->
  4. <html lang="en">
  5. <!-- 头部元素只有浏览器可见 -->
  6. <head>
  7. <meta charset="UTF-8">
  8. <!-- UTF8是默认字符集, utf8可表示世界上几乎所有已知语言字符 -->
  9. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  10. <!-- 浏览器兼容处理 -->
  11. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  12. <!-- 移动端适配 -->
  13. <title>Document</title>
  14. <!-- 页面标题 -->
  15. <link rel="stylesheet" href="style.css">
  16. <!-- 外部css引入 -->
  17. <script src="st.js"></script>
  18. <!-- 外部JS脚本引入 -->
  19. </head>
  20. <body>
  21. <!-- 正文内容写作 -->
  22. <h1 style="color: aliceblue;">哈喽 你好</h1>
  23. <!-- h1标签加颜色属性 -->
  24. <img src="1.png" alt="">
  25. <!-- 外部图片引入 -->
  26. </script>
  27. </body>
  28. </html>

插接安装

插件安装

Correcting teacher:PHPzPHPz

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