HTML big Tag Explained with Syntax and Examples

html big tag


This Blog You Will Learn 

What is the <big> Tag

Syntax of HTML <big> tag

Explain Program

Output

What is the <big> Tag

✷ The <big> tag in HTML was used to display text in a larger font size compared to the surrounding text.
✷ It was mainly used for simple text formatting when developers wanted certain words or sentences to stand out.

✷ The basic syntax of the <big> tag is:

<big>Big text here</big>

✷ When text is placed inside the <big> tag, the browser increases its size slightly, making it more noticeable than normal text.

HTML <big> tag use to make text one font size larger than surrounding content.
<big> increases text size relative  to parent element
<big tag purpose was visual presentation.
exace size increase depends on the browser default font scaling. 

 Syntax of HTML <big> tag


<big>
.
.
</big>

what is the use of big tags in html

Example 


<!DOCTYPE html>
<html>
    <body>

     
        <p> This is html paragraph text </p>
        <big> This is html big tag text</big>
    </body>
</html>


what is the use of big tags in html

Explain Program

Step  1] 

<!DOCTYPE html>

This declare the document type.

browser that the document is written in html

Step 2 ]

<html>.... . </html>

html is the root element of the html page.

 Every thing inside it is part of the webpage.

Step 3]

<head>.....</head>

head section contain metadata  about the webpage information 

for the browser not display on the webpage.

Step 4]

  <p> This is html paragraph text </p>

<p> stand for paragraph tag.

<p> displays text as normal paragraph with default spacing and formatting.

Step 5]

  <big> This is html big tag text</big>

 <big>  makes text slightly larger  than normal text.

<big> tag obsolute in html5  not be use modern web design.

Step  6] 

closing the Tag


</body>

 </html>

what is the use of big tags in html

Output

what is the use of big tags in html




Related Post :-

how to create checkbox in html
frameset tag in html with example
html reset button example

Comments

Popular posts from this blog

HTML Tag

CSS Text Color Explained with Syntax and HTML Examples

html script tag attributes

CSS text-emphasis-color Property

HTML Input Type Submit Syntax and Example

CSS Padding Property Explained

How to Display T Pattern in C with Star (*) – Step-by-Step