ad

Friday, November 14, 2025

how to use small tag in html

   how to use small tag in html

https://webdesigningtheory.blogspot.com

   how to use small tag in html

Example 

<!DOCTYPE html>
<html>
  <body>
  <h2> what is the <small> tag in html </h2>
    <p>student Refer  Web Designing  Theory  learn programming language</p>
    <p>  <small>  Student Refer  Web Designing  Theory  learn CSS Programming language
</small> </p>
  </body>

  </html>


   how to use small tag in html

Explain Program

Step 1 ]

<!Doctype html>

<!doctype html>  always be the first line of any HTML document.

Step 2 ]

   <html> and </html>

   html  is the root element.

Step 3 ]

<body> and </body>

body  is  main content area.

All visible content inside to  the <body> tag

Step 4]

<h2> what is the <small> tag in html </h2>
 
heading    inside also use  <small>  tag 
heading display  title .

Step 5]

    <p>student Refer  Web Designing  Theory  learn programming language</p>


<p> create a paragraph.
 paragraph  contains normal text.
text displayed the browser.

Step 6]


<p>  <small>  Student Refer  Web Designing  Theory  learn CSS Programming language

</small> </p>
 

 
<p> tag inside use the <small>  tag entire text.
  <small> tag  makes text smaller than normal text.
 <small>  tag normal paragraph 
 second paragraph  with smaller size text 

Step 7]


closing the Tag

</body>

 </html>

how to use small tag in html

Output



how to use small tag in html



No comments:

Post a Comment