HTML - <big> Tag



The HTML <big> tag is used to increase the text font size bigger than the surrounding text or documents font size.

This tag is no longer recommended, still some browsers might support it. Instead you can use the CSS to increase the font size.

Example

Let's look at the following example, where we are going to use big tag in the HTML document

<!DOCTYPE html>
<html>

   <head>
      <title>HTML big Tag</title>
   </head>

   <body>
      <p><big>Website: complieonline.com</big>(Online Compiler)</p>
   </body>

</html>

On running the above code, the output window will pop up displaying the text with bigger size that is mentioned with big tag on the webpage.

Global Attributes

This tag supports all the global attributes described in HTML Attribute Reference

Advertisements