在 Visual Studio Code 中运行 HTML 文件只需以下步骤:创建一个 HTML 文件并输入代码。打开内置终端并输入“live-server”。按 Enter 键即可在默认浏览器中打开 HTML 文件,并实时更新文件更改。
<code class="html"><!DOCTYPE html> <html> <head> <title>我的第一个 HTML 页面</title> </head> <body> <h1>欢迎来到我的网站!</h1> </body> </html></code>
Ctrl
+ ~
(Mac 为 Cmd
+ ~
)打开内置终端。<code>live-server</code>
Live Server 是 VSCode 的一个内置扩展,用于快速启动和预览基于浏览器的项目。它会在 localhost 上启动一个开发服务器,并自动对文件更改进行实时更新。
运行 HTML 文件后,Live Server 将在默认浏览器中打开该文件。您可以看到页面已成功渲染,并且对文件所做的任何更改都会自动刷新浏览器中的页面。
以下是一些其他提示:
Ctrl
+ L
(Mac 为 Cmd
+ L
)快速在终端和编辑器之间切换。The above is the detailed content of How to run html with vscode. For more information, please follow other related articles on the PHP Chinese website!