Blogger Information
Blog 9
fans 0
comment 0
visits 3942
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
初识 VSCode、markdown 语法、HTML
恒儿哥哥
Original
453 people have browsed it

编辑器VSCode 插件

  1. Dracula Official 主题(Dracula At Night)暗黑模式
  2. Dracula At Night vsCode语言包
  3. Better Comments 更好的注释
  4. Live Server 时实服务器(网页随着代码动态改变)
  5. Markdown Preview Enhanced Markdown语法高亮
  6. Prettier - Code formatter 代码格式化

markdown 语法

标题

1

2

3

4

  1. # 标题(一个#为大标题 多个则为小标题)

列表

无序列表

  • xxx1
  • xxx2
    • xxx2-1
    • xxx2-2
  1. 无序列表写法:
  2. - xxx
  3. - xxx
  4. -xxx
  5. -xxx

有序列表

  1. xxx1
  2. xxx2
    1. xxx2-1
    2. xxx2-2
  1. 有序列表写法:
  2. 1.xxx1
  3. 2.xxx2
  4. 1.xxx2-1
  5. 2.xxx2-2

代码

  1. 单行: echo 'hello word'
  1. 多行
  1. public function index($name){
  2. return $name;
  3. }

表格

id name sex age
1 张公公 22
2 王丫鬟 18
3 韦爵爷 32
4 赵国公 45
  1. 表格代码
  2. | id | name | sex | age |
  3. | --- | --- | --- | --- |
  4. | 1 | 张公公 | | 22 |
  5. | 2 | 王丫鬟 | | 18 |
  6. | 3 | 韦爵爷 | | 32 |
  7. | 4 | 赵国公 | | 45 |

图片

19期前端开发

  1. 写法: ![随便填(图片不嫌则现实这个内容)](图片URL)

链接:

博客: https://blog.houyue52.cn/

  1. 写法: <https://blog.houyue52.cn/>

HTML 标签含义

  1. 类型声明 这是一个html类型的
  2. <!DOCTYPE html>
  3. 页面语言定义
  4. <html lang="zh-CN">
  5. 定义头部 作用:提供页面描述、引用脚本、样式
  6. <head>
  7. charset 字符集列如: UTF-8UTF-16GBK
  8. <meta charset="UTF-8">
  9. 浏览器兼容,原用于IE8适配,可确保按IE最高版本来解析页面,可有可无,现在微软也采用了Chrome内核啦
  10. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  11. meta标签的作用是让当前viewport的宽度等于设备的宽度,同时不允许用户手动缩放。也许允不允许用户缩放不同的网站有不同的要求,但让viewport的宽度等于设备的宽度,这个应该是大家都想要的效果,如果你不这样的设定的话,那就会使用那个比屏幕宽的默认viewport,也就是说会出现横向滚动条。
  12. 这个nameviewportmeta标签到底有哪些东西呢,又都有什么作用呢?
  13. meta viewport 标签首先是由苹果公司在其safari浏览器中引入的,目的就是解决移动设备的viewport问题。后来安卓以及各大浏览器厂商也都纷纷效仿,引入对meta viewport的支持,事实也证明这个东西还是非常有用的。
  14. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  15. 标题
  16. <title>Document</title>
  17. 引入外部样式表
  18. <link rel="stylesheet" href="https://tu.houyue52.cn/i/2022/03/16/11cnirx.css" />
  19. 引入外部脚本
  20. <script src="11cnirx.js"></script>
  21. </head>
  22. 主体内容 页面现实的内容和你写的基本都在这个里面啦
  23. <body>
  24. 标题标签
  25. <h1>hello</h1>
  26. 链接标签
  27. <a href="https://tu.houyue52.cn/i/2022/03/16/11cnirx.jpg"></a>
  28. 图片标签
  29. <img src="https://tu.houyue52.cn/i/2022/03/16/11cnirx.jpg" alt="" />
  30. </body>
  31. </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