HTML 标签列表

HTML <font> 标签

HTML <font> 标签用于定义其中包含的文本的字体样式。它定义了 HTML 文档中的字体大小、颜色和字体或文本。

注意:不要使用 HTML <font> 标签,因为它在 HTML5 中已被弃用,因此您可以使用 CSS 属性来更改字体大小、字体、颜色等。

句法

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

以下是关于 HTML <font> 标签的一些规范

展示排队
开始标签/结束标签开始和结束标签
用法字体样式

示例 1

<!DOCTYPE html>  
 <html>  
 <head>  
 <title>Font Tag</title>  
 </head>  
 <body>  
 <h2>Example of font tag</h2>  
 <p>This is normal text without any font styling</p>  
  <p>  
    <font color="blue">Text with normal size and default face</font>  
  </p>  
  <p>  
    <font size="5" color="green">Text with Increased size and default face</font>  
  </p>  
  <p>  
    <font color="red" face="cursive">Text with Changed face</font>  
  </p>  
</body>  
</html>

输出:

HTML 字体标签

使用 CSS

使用 CSS 属性可以实现相同的效果,如下例所示:

<!DOCTYPE html>  
 <html>  
 <head>  
 <title>Font Tag</title>  
 </head>  
 <body>  
<h2>Change font using CSS</h2>  
 <p>This is normal text without any font styling</p>  
 <p style="color: blue;">Text with normal size and default face</p>  
 <p style="font-size: 25px; color: green;">Text with Increased size and default face </p>  
 <p style="font-family: cursive; color: red;">Text with Changed face</p>  
</body>  
</html>

输出:

HTML 字体标签

属性

标签特定的属性

属性价值描述
冷色rgb(X,X,X)
#xxxxx
color_name
它指定内容的颜色。(HTML5 不支持)
字体系列它指定内容的字体。(HTML5 不支持)
尺寸数字它指定内容的大小。(HTML5 不支持)

支持浏览器

元素ChromeIEFirefoxSafariOpera
<font>YesYesYesYesYes


  • 使用社交账号登录,本站支持
全部评论(0)