Blogger Information
Blog 17
fans 0
comment 0
visits 8213
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
想躺平的第一天
想做一个躺平的程序员
Original
508 people have browsed it

vs code 安装流程

第一步去vs code官网

vs code 官网

第二步

点击vs code官网中的Download for Windows进行下载
下载提示

根据自己的选择放在哪个盘里

vs code插件的选择

插件名称 描述
live server html实时预览
prettier-codeformmatter 最流行的代码格式化插件
chinese(simplified) 简体中文语言包
dracula official 经典的吸血鬼主题

Markdown练习及演示

一个# 表示 一级标题
演示效果如下

这个是一级标题效果

多个# 表示 多级标题
演示如下

这个是二级标题效果

三级标题效果

四级标题效果

列表

列表分为无序列表和有序列表

有序列表 使用数字加上.号来表示 如:

1.第一个
2.第二个
3.第三个

无序列表 使用(*)星号 或是 (+)加号以及(-)减号来表示 如:

  • 星号来表示的
  • 加号来表示的
  • 减号来表示的

代码

如何来写出代码块
写出代码块有两种方式
第一种是 `` 在引号里面写对应的代码
第二种是 ```包裹一段代码 如:

  1. echo "hello word"

就像这样的

链接

图片

  • ![属性文本] (图片地址)
  • ![属性文本] (图片地址 “可选标题”)

演示如下:

php中文网官网

表格

演示如下:

姓名 年龄 工资
张三 40 4343
李四 42 4234234
王五 34 23432

html文档功能演示

  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. </body>
  10. </html>

<!DOCTYPE html>声明文档类型

<html lang="en"> 根元素
<head> 头部标签 包含文档的元数据
<meta charset="UTF-8">定义网页的编码格式
<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>页面标题</title>
</head>
<body> 可见的页面内容

</body>
</html>

Correcting teacher:PHPzPHPz

Correction status:qualified

Teacher's comments:html代码用代码块包裹即可
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