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>
广告