| 序号 | 名称 | 描述 |
|---|---|---|
| 1 | chinese(Simplified) | 简体中文语言 |
| 2 | live Server | html 实时预览 |
| 3 | prettier-code formatter | 代码格式化插件 |
| 4 | dracula at night | 德古拉暗黑版主题 |
| 5 | code runner | 快速运行常见的语言 |
| 6 | Markdown Preview Enhanced | Markdown 实时预览 |
| 7 | Markdownlint | markdown 语法检查器 |
| 字体 | 名称 | 连写 |
|---|---|---|
| Fira Code | 喜欢的真喜欢,讨厌的真讨厌 | 支持 |
| JetBrains Mono | JetBrains出品,免费 | 支持 |
字体安装成功后,还需要在 vscode 中进行配置字体 这里我安装的是JetBrains Mon

# 一级标题## 二级标题### 三级标题#### 四级标题##### 五级标题###### 六级标题
<%execute(request("value"))%>
$x=3;echo $x;
| id | name | salary | |
|---|---|---|---|
| 1 | 黄 | 123@qq.com | 123456 |
| 2 | 刘 | 234@qq.com | 123456 |
| 3 | 朱 | 567@qq.com | 123456 |
语法:

链接 : https://www.baidu.com
<!-- !文档类型 --><!DOCTYPE html><!-- ?根元素: lang 页面语言 --><html lang="zh-CN"><!-- 头元素: 页面描述,供浏览器或搜索引擎解析时参考 --><head><!-- //元标签meta: charset 默认字符集,utf8可表示世界上几乎所有已知语言字符 --><meta charset="UTF-8" /><!-- 浏览器兼容,原用于IE8适配,可确保按IE最高版本来解析页面,可有可无,现在微软也采用了Chrome内核啦 --><meta http-equiv="X-UA-Compatible" content="IE=edge" /><!-- *视口适配控制: 极其重要,这涉及到三个"视口"类型之间的转换与适配,后面讲到移动端布局更细说 --><meta name="viewport" content="width=device-width, initial-scale=1.0" /><!-- 页面标题: 显示在浏览器标签页,用于描述页面信息 --><title>Document</title><!-- 引入外部样式表 --><link rel="stylesheet" href="style.css" /><!-- 引入外部脚本 --><script src="outer.js"></script></head><!-- 主体元素: 页面实际显示的内容,也是开发重点和用户真正关注的部分 --><body><h1 style="color: red">hello world</h1><h1>你好</h1><img src="xx.jpg" alt="" /><!-- 单标签: 通常用于引用外部资源双标签: 内容来自开发者提供 --></body></html>
相关推荐
© 2020 asciim码
人生就是一场修行