Language References
Enlarges the font size from its current value by 1. | HTML 3, 3.2, 4, 4.01. Deprecated |
HTML Syntax
<big
class = classname
id = value
style = css properties
title = text
event = script
>
The BIG element has the same effect as using the FONT element with a size value of +1. It renders text in the next bigger size of the current font.
<big
> tags can be nested, and each nested <big
> element will further increase the size by one size bigger.
NOTE: Both start and end tags are required.
NOTE: This element has been deprecated in favor of CSS stylesheets.
The <big
> element has no attribute of its own, but supports global attributes common to all HTML elements.
The following example increases the font size in three steps.
<p>As Alice ate the cookies, she felt herself grow
<big>bigger, and <big>bigger, and
<big>bigger.</big></big></big>
As Alice ate the cookies, she felt herself grow bigger, and bigger, and bigger.
SMALL