HTML big Tag

HTML <big> Tag: The HTML big tag defines the bigger text. It is not supported by HTML5. In HTML 5, it can be used by CSS.

HTML <big> Tag

The HTML <big> tag is supported by chrome, firefox, safari, opera and internet explorer.

Syntax: <big>Text</big>

Browser Support

The HTML big tag was supported by different types of browsers.

  • Chrome
  • InternetExplorer
  • Firefox
  • Safari
  • Opera

Example:

<!DOCTYPE html>
<html>
<body>
<p>This is the normal text</p>
<p><big>This is the bigger text</big></p>
</body>
</html>

Output:

 

This text is normal.
This text is bigger.

Note: The big element is not supported in HTML5.