HTML - <font> 標籤



HTML <font> 標籤用於指定文字的字型。我們可以使用此標籤和相應的屬性更改顏色、大小和字型。

由於 <font> 標籤在 HTML5 中已被棄用,因此不再推薦使用。我們可以使用 CSS 屬性來更改字型大小、顏色等,而不是使用此標籤。

語法

<font size=" " color=" " face=" "> ....</font>  

屬性

HTML font 標籤支援 HTML 的全域性事件 屬性。還接受一些特定的屬性,如下所示。

屬性 描述
color

rgb(x,x,x)

#hexcode

colorname

已棄用 - 指定文字的顏色。
face 字型名稱列表 已棄用 - 指定字體系列。
size 數字 已棄用 - 指定字型大小,從 1 到 7。

HTML font 標籤示例

以下示例將說明 font 標籤的使用方法。在什麼情況下以及如何使用 font 標籤,以及如何使用屬性操作字型

設定文字大小

在此示例中,我們將使用 size 屬性更改字型文字大小,以及使用 CSS 更改字型大小的替代方法。

<!DOCTYPE html>
<html>
<head>
   <title>HTML font Tag</title>
</head>
<body>
   <!-- Using attribute -- >
   <font size = "5">
      The HTML font tag is now deprecated. 
      You should use start using CSS to set
      font size and family.
   </font>
   <!-- Using CSS -- >
   <p style="font-size:24px">
      The HTML font tag is now deprecated. 
      You should use start using CSS to set
      font size and family.
   </p>
</body>

設定文字顏色

在此示例中,我們將使用 color 屬性更改字型文字顏色,以及使用 CSS 更改字型顏色的替代方法。

<!DOCTYPE html>
<html>
<head>
   <title>HTML font Tag</title>
</head>
<body>
   <!-- Using attribute -- >
   <font color = "#ff9900">
      The HTML font tag is now deprecated. 
      You should use start using CSS to set
      font size and family.
   </font>
   <!-- Using CSS -- >
   <p style="color:#ff9900">
      The HTML font tag is now deprecated. 
      You should use start using CSS to set
      font size and family.
   </p>
</body>
</html>

設定文字字型

在此示例中,我們將使用 face 屬性更改字型文字字型,以及使用 CSS 更改字型字型的替代方法。

<!DOCTYPE html>
<html>
<head>
   <title>HTML font Tag</title>
</head>
<body>
   <!-- Using attribute -- >
   <font face = "cursive,serif">
      The HTML font tag is now deprecated. 
      You should use start using CSS to set
      font size and family.
   </font>
   <!-- Using CSS -- >
   <p style="font-family: cursive,serif;">
      The HTML font tag is now deprecated. 
      You should use start using CSS to set
      font size and family.
   </p>
</body>
</html>

支援的瀏覽器

標籤 Chrome Edge Firefox Safari Opera
font
html_deprecated_tags.htm
廣告