ad

Showing posts with label html text formatting. Show all posts
Showing posts with label html text formatting. Show all posts

Wednesday, November 12, 2025

How to Use the HTML ins (inserted text) Tag

How to Use the HTML <ins> Tag 

web designing Theory  website

How to Use the HTML <ins> Tag

Example 


<!DOCTYPE html>
<html>
 <body>
  <h2> how to use Inserted  text tag in html</h2>
<p>student learn <ins> HTML </ins> programming language</p>
    <p> Student learn <ins>CSS</ins> Programming language</p>

 </body>

</html>

 

How to Use the HTML <ins> Tag 
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> how to use Inserted text tag in html</h2>

<h2> ... </h2>

 html has six heading levels <h1> to <h6>.
 <h2> use  subheading to describe  the topic of page.

Step 5]


<p>student learn <ins> HTML </ins> programming language</p>

<p>..  </p>

stands paragraph  use display blocks of text.

 inside thid paragraph  another tag <ins> around the word html
     <ins> tag 
 <ins>  inserted text .
 <ins>  use  mark text that has added or inserted into document.
  webpage HTML  appear underlined indicating  inserted tag 

Step 6]


<p> Student learn <ins>CSS</ins> Programming language</p>

<p>..  </p>

stands paragraph  use display blocks of text.

 inside thid paragraph  another tag <ins> around the word html
     <ins> tag 
 <ins>  inserted text .
 <ins>  use  mark text that has added or inserted into document.
 webpage CSS  appear underlined indicating  inserted tag 

Step 7]

closing the Tag

</body>
</html>

How to Use the HTML <ins> Tag 
Output




Related Post :-

how to use subscript tag in html

how to use mark tag in html

how to bold text in html tag

Tuesday, November 11, 2025

how to use subscript tag in html

how to use subscript tag in html

web designing Theory  website

how to use subscript tag in html
Example 

<!DOCTYPE html>
<html>
 <body>
  <h2> how to use subscript tag in html</h2>
<p>student learn <sub> HTML </sub> programming language</p>
    <p> Student learn <sub>CSS</sub> Programming language</p>

 </body>

</html>

how to use subscript 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> how to use subscript tag in html</h2>

<h2>  display title create second-level heading  bold  larger text.</h2>

Step 5]

<p>student learn <sub> HTML </sub> programming language</p>
    <p> Student learn <sub>CSS</sub> Programming language</p>

each <P> tag defines  paragraph text.

inside each <p>  tag is a subscript tag (<sub> tag).

Step 6]

<p> Student learn <sub> HTML </sub> programming language</p>

Sub tag  

the <sub> tag is use to display text slightly  below the normal line is subscript tag.
commonly use chemical formulas , mathematical expression 

HTML word appear as subscript tag  a bit lower and smaller than surrounding text.

<p> Student learn <sub> CSS </sub> programming language</p>

CSS word appear as subscript tag  a bit lower and smaller than surrounding text.

Step 7]

closing the Tag

</body>
</html>

how to use subscript tag in html
Output

how to use subscript tag in html


Related Post :-



Saturday, November 8, 2025

what is the em tag in html

 what is the <em> tag in html

https://webdesigningtheory.blogspot.com


what is the <em> tag in html

Explain program 



<!DOCTYPE html>
<html>
 <body>
  <h2> what is the <em> tag in html </h2>
    <p>student learn <em> HTML </em> programming language</p>
    <p> Student learn <em>CSS</em> Programming language</p>
 </body>

</html>

what is the <em> 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 <em> tag in html </h2>

<h2> tag heading tag. second most important tag.
inside the heading <em> use tag

Step 5]

<p>student learn <em> HTML </em> programming language</p>
    <p> Student learn <em>CSS</em> Programming language</p>

<p>  defines a paragraph. 

inside the paragraph <em> use to highlight  important words.

<em> HTML</em>  :-  HTML appears italicized.
<em>CSS</em>  :- CSS appears italicizes.

Step 6]

</body>

</html>


end body,HTML Document

what is the <em> tag in html 

output 

what is the <em> tag in html


Related Post :-

html italic tag

html table cellpadding attribute

how to create checkbox in html