<del> HTML Tag

In this article I will discuss the del tag of HTML.
  • 2067

The HTML del tag is used for markup of deleted text.Markup of deleted text can be useful in determining differences between multiple versions of the same document. Browsers will normally strike a line through deleted text and underline inserted text.The <del> tag defines text that has been deleted from a document.

Example

<html>

<head>

    <title></title>

</head>

<body>

    <p>

        Mindcracker Network was formed and maintained by <del>Employees</del> <ins>professionals</ins>,

        who strongly believe in sharing their <del>information</del> <ins>piece of code</ins>

        with other developers. It is a <del>very costly</del> <ins>free</ins> source site for C# and .NET developers.</p>

    <p>

        C# and .NET developers can meet and exchange their <del>views</del> <ins>ideas</ins>,code and expertise on

        the site through discussion forums or submissions.</p>

</body>

</html> 


Output
 

Mind cracker Network was formed and maintained by Employees professionals, who strongly believe in sharing their information piece of code with other developers. It is a very costly free source site for C# and .NET developers.

C# and .NET developers can meet and exchange their views ideas, code and expertise on the site through discussion forums or submissions.


Ask Your Question 

Got a programming related question? You may want to post your question here
 
© 2020 DotNetHeaven. All rights reserved.