Computer >> Computer tutorials >  >> Programming >> HTML

HTML <big> Tag


The <big> element in HTML is used to form the text bigger than the default.

Note: The <big> element is not supported in HTML Let us now see an example to implement the <big> element in HTML−

Example

<!DOCTYPE html>
<html>
<body>
   <h2>Demo Heading</h2>
   <p>This is demo text!</p>
   <p><big>This demo text is bigger than the default text.</big></p>
</body>
</html>

Output

HTML <big> Tag

In the above example, first we have set a normal text −

<p>This is demo text!</p>

After that, we have set another text using the <big> element −

<p>
   <big>
      This demo text is bigger than the default text.
   </big>
</p>