Summary -
In this topic, we described about the <big> tag along with detailed example.
The <big> tag not Supported in HTML5. Large text is used to display the text as big text (increase the size). Large text uses <big> tag.
Any text in between <big>..</big> displays as big text. <big> element is nested element.
Syntax -
<big>.. text here.. </big>
Example -
<!DOCTYPE html>
<html>
<head>
<title>Large text example.. </title>
</head>
<body>
<p>This is <big>Big</big> text</p>
</body>
</html>
Output -
This is Big text