what is the use of big tags in html

what is the use of big tags in html

web designing theory

This Blog You Will Learn 

What is the <big> Tag

Syntax of HTML <big> tag

Explain Program

Output

What is the <big> Tag

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>

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

text properties in css

CSS text-emphasis-color Property

How to insert image in html

How to Use CSS Outline Offset Property

css id selector