<ins> HTML Tag

In this article I will discuss the <ins> HTML Tag.
  • 2479

The HTML ins tag is used for markup of inserted text.or we can say that The <ins> tag defines a text that has been inserted into a document.

Example

<html>

<head>

    <title></title>

</head>

<body>

    <h3>

        <p>

            The Full form of <del>HTTP</del> <ins>HTML</ins> is Hypertext Markup Language.</p>

        <p>

            In this article I explained the <del>&lt;del&gt;</del> <ins>&lt;ins&gt;</ins> tag.</p>

    </h3>

</body>

</html>


Output

The Full form of HTTP HTML is Hypertext Markup Language.

In this article I explained the <del> <ins> tag.


Ask Your Question 

Got a programming related question? You may want to post your question here

Programming Answers here

 

© 2020 DotNetHeaven. All rights reserved.