排序 | 插件名 | 插件描述 |
---|---|---|
1 | chinese(simplified ...) |
简体中文语言包 |
2 | live server |
html 实时预览 |
3 | prettier-code formatter |
最流行的代码格式化插件 |
4 | better comments |
自定义注释颜色 |
5 | path intellisense |
路径自动感知填充 |
6 | helium icon theme |
一款我喜欢的文件图标主题 |
7 | one dark pro |
经典的主题,使用者众多,很耐看 |
8 | material theme |
经典”材料”主题 |
9 | material theme icons |
常与material theme 配置的文件图标 |
10 | shades of purple |
赛博朋克风格的一款主题,很明亮风骚 |
序号 | 标签 | 功能 |
---|---|---|
1 | html | 网页根标签 |
2 | head | 网页头部可以引入css样式,或title网页标题标签 |
3 | body | 网页主体标签 |
4 | p | 段落标签,用于书写段落 |
5 | h1~h6 | 标题标签,数值越小字体越小 |
6 | img | 图片标签 |
7 | a | 链接标签,也可用于锚点 |
更多html标签:https://www.php.cn/course/27.html
html图片代码:<img src="http://www.shteam.cn/weixin.png"/>
html必须代码:
<html>
<head></head>
<body>
</body>
</html>