HTML 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

 Live Demo

<!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

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>

Updated on: 29-Jun-2020

44 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements