如何使用 VSCode 為 HTML 專案設定背景和字體背景設定:新 HTML 文件,在 CSS 樣式表中新增背景色定義,例如 body {background-color: #f0f0f0;}。字體設定:載入 Web 字體,將其匯入 HTML 頁面,在 CSS 樣式表中使用 font-family 屬性指定字體,例如 body {font-family: 'Roboto', sans-serif;}。
如何使用VSCode 為HTML 專案設定背景與字型
##背景設定
標籤中新增
標籤,連結到一個外部CSS 樣式表。例如:
<code class="html"><head> <link rel="stylesheet" href="style.css"> </head></code>
<code class="css">body { background-color: #f0f0f0; }</code>
字體設定
標籤中新增以下
標籤:
<code class="html"><head> <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet"> </head></code>
屬性來指定您的字體。例如:
<code class="css">body { font-family: 'Roboto', sans-serif; }</code>
,
font-weight 和
font-style。
範例 HTML 和 CSS 程式碼
以下是一個範例 HTML 和 CSS 程式碼,用於設定背景和字體:<code class="html"><!DOCTYPE html> <html> <head> <link rel="stylesheet" href="style.css"> </head> <body> <h1>标题</h1> <p>正文</p> </body> </html></code>
<code class="css">body { background-color: #f0f0f0; font-family: 'Roboto', sans-serif; font-size: 16px; font-weight: 400; } h1 { font-weight: 700; }</code>
以上是vscode建立html專案怎麼設定背景和字體的詳細內容。更多資訊請關注PHP中文網其他相關文章!