HTML标签


HTML 中的 <big> 元素用于将文本格式成比默认文本更大的文本。

注意:HTML 中不支持 <big> 元素。下面我们来看一个示例来实现 HTML 中的 <big> 元素−

示例

 在线演示

<!DOCTYPE html>
<html>
<body>
   <h2>Demo Heading</h2>
   <p>This is demo text!</p>
   <p><big>This demo text is bigger than the default text.</big></p>
</body>
</html>

输出

在上述示例中,我们首先设置了一个普通文本 −

<p>This is demo text!</p>

然后,我们使用 <big> 元素设置了另一个文本 −

<p>
   <big>
      This demo text is bigger than the default text.
   </big>
</p>

更新于:2020 年 6 月 29 日

85 次浏览

开启您的职业生涯

通过完成课程取得认证

开始
广告