View video tutorial

HTML <big> Tag

HTML

Not Supported in HTML5. It is recommended not to use this tag. Use CSS instead.

HTML <big> Tag


In HTML, the <big> tag is used to make the size of the selected text larger than the surrounding text.

This tag is deprecated in HTML5. Use CSS font-size property instead.

Learning with HTML Editor "Try it Now"

You can edit the HTML code and view the result using online editor.

Example

<style>
    .fs {
        font-size: 25pt;
        color: #aa5858;
    }
</style>
Try it Now »

Click on the "Try it Now" button to see how it works.