HTML - Strikethrough

  »   HTML  »   HTML Tutorial - Strikethrough

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

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

Demo

This text is cutby a line !

Striketrough - Applications

This tag does not have too many applications, but we will try to exemplify its use by the following example: a shopping list

html<ol>

	<li>An iPhone</li>
	<li><del>Cheese</del></li>
	<li><del>Milk</del></li>

</ol>

Demo

  1. An iPhone
  2. Cheese
  3. Milk

We hope this info has been useful to you!