HTML <big> tag

HTML <big> tag : Definition

The HTML <big> tag Does Not Supports in HTML5.

• The HTML <big> tag was used in HTML 4 to define in bigger text formate.

• This tag increases the text font size by one size bigger than a document's base font size.

== IMPORTANT NOTE ==

.

The HTML <big> tag Does Not Supports in HTML5.

• The HTML <big> element is found within the <body> tag.

• The <big> tag can not make the text larger than the browser's maximum font size.


<big> tag example :





 <!DOCTYPE html> 
<html> 
    <head> 
        <title>bdo tag example</title>         
    </head> 
    <body>
    <p>This is a normal paragraph and <big> this is a bigger paragrap.</big></p>
</body>a
</html> 


OUTPUT :

 
  

This is a normal paragraph and this is a bigger paragrap.