HTML Tag Reference - HTML tag <big>








The <big> tag marks bigger text.

Browser compatibility

<big> Yes Yes Yes Yes Yes

What's new in HTML5

The <big> tag is deprecated in HTML5.

Example

<!DOCTYPE html>
<html>
<body>

<p>This text is normal.</p>
<p><big>This text is bigger.</big></p>

</body>
</html>

Click to view the demo