30/09/2014

HTML Strikethrough text

The strikethrough text can be produced using the <del> tag.
Input
<p>This text is <del>cut</del>by a line!</p>
Output
This text is cutby a line !
Striketrough- Applications
This tag has not got very many applications, but we will try to exemplify its use by the following example:
Input
A wedding list
<ol>
<li>An Apple</li>
<li><del>Chess</del></li>
<li><del>Love</del></li>
</ol>
Output
A wedding list
  1. An Apple
  2. Chess
  3. Love

We hope these info has been precious to you!