HTML Big Element Small Element
1.7 Big Element (<BIG>
)
The <big>
tag was used to make text appear slightly larger than the normal text size. However, this tag is deprecated in HTML5, and CSS is recommended to control the size of the text.
Example:
<big>This text is bigger.</big>
Modern Alternative: Use CSS for resizing text, for example:
<p style="font-size: 20px;">This text is bigger.</p>
1.8 Small Element
The <small>
tag is used to make text appear smaller than the surrounding text. This is typically used for fine print, footnotes, or legal disclaimers.
Example:
<small>This text is smaller.</small>
Comments
Post a Comment