Open In App
Related Articles

HTML <big> Tag

Improve Article
Improve
Save Article
Save
Like Article
Like

The <big> tag in HTML is used to increase the selected text size by one larger than the surrounding text. In HTML 5, it can be used by CSS.

Note: It is not supported in HTML 5

Syntax: 
 

<big> Contents... </big>

Below examples illustrate the <big> tag in HTML:

Example 1:

HTML




<!DOCTYPE html>
<html>
  
<body>
    <h1>GeeksforGeeks</h1>
    <!--Paragraph Tag -->
    <p>This is paragraph text</p>
  
    <!--Big Tag-->
    <big>This is big Tag text</big>
</body>
  
</html>


Output:

Example 2:

HTML




<!DOCTYPE html>
<html>
  
<body>
    <h1>GeeksforGeeks</h1>
    <!--Paragraph Tag -->
    <p>This is normal paragraph text</p>
  
    <!--CSS Style used in big Tag -->
    <big style="font-size:40px; 
                font-weight:bold; 
                color:green; ">
       Using CSS style in big Tag
    </big>
</body>
  
</html>


Output: 
 

Supported Browsers:

  • Google Chrome
  • Internet Explorer
  • Firefox
  • Opera
  • Safari

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 17 Mar, 2022
Like Article
Save Article
Previous
Next
Similar Reads
Complete Tutorials