HTML - Strikethrough text

The strikethrough text can be produced using the <del> tag.

<p>This text is <del>cut</del>by a line !</p>

Display

This text is cut by a line !


Striketrough - Applications

This tag has not got very many applications, but we will try to exemplify its use by the following example: a shopping list

<ol>

<li>Un IPhone</li>

<li><del>Cheese</del></li>

<li><del>Milk</del></li>

</ol>

Display

    1. Un IPhone
    2. Cheese
    3. Milk

 

We hope these info has been useful to you!