🚀 LEVEL UP TO SENIOR:Unlock 500+ Advanced Practical Challenges & Expert Masterclasses.
🎓 COURSERA PARTNER:Earn professional Google, Meta, and IBM certificates to supercharge your resume.
REFERENCEhtml

html Documentation

LOADING ENGINE...

HTML Big Tag

A journey into HTML history. Learn about text sizing, deprecated tags, and modern alternatives.

big_tag.html
<!-- Making text huge -->
<p>
This is <big>massive</big>.
</p>
big_tag.html
1 / 9
🐘

Tutor:Before CSS took over, HTML had specific tags to control text size. The <big> tag was used to make text appear one font size larger than the surrounding text. It's a classic example of presentational HTML.


Size Mastery

Unlock nodes by learning legacy sizing tags.

Concept 1: Legacy Code

Legacy tags are old HTML elements that are no longer part of the standard but still work in browsers.

System Check

What does it mean if a tag is 'deprecated'?


Community Holo-Net

Share Your Legacy Code

Found a website still using the big tag? Share your archeological findings.

Enjoying this guide?

Codesyllabus is 100% free and open-source. Support our mission, pay for server infrastructure, and fuel new tutorials by buying us a coffee!

The Big Tag & Sizing

Author

Pascual Vila

Frontend Instructor.

The <big> tag was part of the original HTML specification intended to manipulate text size directly. It renders text one font size larger than the surrounding content.

Why use it? (Historically)

Before CSS was robust, developers needed quick ways to emphasize text visually without implying semantic importance (like <strong> or <h1>). The big tag was a purely presentational tool.

HTML5 Deprecation

In HTML5, this tag is non-conforming. This means it is obsolete and strictly discouraged. Modern web design separates content (HTML) from presentation (CSS).

The Alternative

Instead of <big>, use the CSS property font-size. For example: style="font-size: larger;" achieves the exact same effect but adheres to modern standards.

Sizing Glossary

Big Tag
A deprecated HTML tag <big> that increases the font size of the text it wraps by one level.
Small Tag
The opposite of big. The <small> tag renders text one size smaller. Unlike big, small is not deprecated as it has acquired semantic meaning (fine print).
Deprecated
Features that are no longer recommended for use and may be removed in future versions of web standards.
Nesting
Putting tags inside other tags. With <big>, nesting <big><big>Text</big></big> makes the text two sizes larger.