HTML <big> Tag Demo

The <big> tag is used to make text appear one size larger than the surrounding text.

Example Code:

Normal text
<big>This is big text</big>

Live Output:

Normal text

This is big text

⚠️ Note: The <big> tag is deprecated in HTML5. Use CSS for controlling text size:

<span style="font-size: 1.5em;">Big text with CSS</span>