The HTML <strike> tag

Not supported in HTML5.

<strike> tag The tag is used in HTML 4 to define strikethrough text.

What to replace with?

Example 1

Usage <del> tag Define deleted text:

<p>My favorite color is <del>blue</del><ins>red</ins>!</p>

Try It Yourself

Example 2

Usage <s> tag Mark the text that is no longer correct:

<p><s>Tickets only 16 left!</s></p>

Try It Yourself