HTML <big> Tag Example

HTML Code:

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

<p><big>This is big text using the <big> tag.</big></p>
  

Output in Browser:

This is normal text.

This is big text using the <big> tag.

Note: The <big> tag increases the font size slightly, but it is deprecated in HTML5.

Use this modern CSS alternative instead:
<p style="font-size: 1.2em;">This is big text using CSS.</p>