Advertisement
❮ Previous: <bgsound> Next: <blink> ❯

<big>

HTML <big> Tag

Deprecated: HTML5 Not Supported

Example

<p>This is <big>big</big> text</p>

Try this code ❯

Meaning

The <big> element indicates that the enclosed text should be displayed in a larger font relative to the current font.

Note: This element was originally introduced in HTML 3 and moved to HTML 3.2.

Version: HTML 3, 3.2, 4, 4.01


Standard Syntax

<big>text</big>


Advertisement

Use CSS instead of <big>

Example

<style>
p.ex1 {
  font-size: 20px;
}
p.ex2 {
  font-size: 30px;
}
p.ex3 {
  font-size: 40px;
}
</style>

Try this code ❯

❮ Previous: <bgsound> Next: <blink> ❯
Advertisement