Share Your Legacy Code
Found a website still using the big tag? Share your archeological findings.
A journey into HTML history. Learn about text sizing, deprecated tags, and modern alternatives.
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.
Legacy tags are old HTML elements that are no longer part of the standard but still work in browsers.
What does it mean if a tag is 'deprecated'?
Found a website still using the big tag? Share your archeological findings.

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.
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.
In HTML5, this tag is non-conforming. This means it is obsolete and strictly discouraged. Modern web design separates content (HTML) from presentation (CSS).
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.
<big> that increases the font size of the text it wraps by one level.<small> tag renders text one size smaller. Unlike big, small is not deprecated as it has acquired semantic meaning (fine print).<big>, nesting <big><big>Text</big></big> makes the text two sizes larger.