<big> Tag in HTML
The <big> tag is used to display text in a larger font size than the surrounding text. It is a simple way to emphasize certain parts of text by making them appear bigger, without needing to apply custom CSS.
Key Points on <big> Tag:
- The
<big>
tag is used to increase the font size of text in relation to the surrounding text. - This tag is deprecated in HTML5, and it is recommended to use CSS for controlling font size.
- The
<big>
tag has no additional attributes.
Syntax of <big> Tag:
Syntax Example
<big>Your text here</big>
Example of <big> Tag in HTML:
This example demonstrates how the <big>
tag is used to make text larger.
Code Example
<html>
<head></head>
<body>
<p>This is a normal text, followed by a <big>larger text</big> using the big tag.</p>
</body>
</html>
Output
This is a normal text, followed by a larger text using the big tag.
The <big>
tag increases the size of the word "larger text" compared to the surrounding text. However, because this tag is deprecated in HTML5, it is better practice to use CSS for font size manipulation.