HTML big Tag was used in HTML 4 to define bigger text, It is not used in HTML5 anymore.
Table of Contents
Syntax of HTML big Tag
The Syntax of HTML big Tag is shown below. It has both opening and closing tags.
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<big>
// text will be bigger than normal
</big>
</body>
</html>
Usage of HTML big Tag
HTML big tag was deprecated in HTML5 and instead of using big tag, CSS is used to change the font size of the text. It is not recommended to use big tag in your web page.
Example of HTML big Tag
Simple example of HTML big tag is shown below.
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<p>HTML <big>Big</big> Tag</p>
</body>
</html>
In the above example as you can see, the big tag is used to make the word 'Big' bigger in size than normal text.
Output
The output of above example is shown below.
HTML Big Tag
Important Note
You should use CSS instead of big tag to increase the font size of text.
HTML big Tag Video
Watch our video on HTML big Tag and subscribe our Youtube Channel.