HTML <big> Tag

❮ Previous Reference Next ❯

Deprecated: HTML5 Not Supported

Example

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

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>



Browser Support




Status







Use CSS instead of <big>

Example

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