ad

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

No comments:

Post a Comment