From http://www.w3schools.com (Copyright Refsnes Data)

HTML 5 <s> and <strike> tags


Definition and Usage

The <s> and <strike> tags defines strikethrough text. Not supported in HTML 5. Use CSS instead.


Differences Between HTML 4.01 and HTML 5

The <s> and <strike> elements were deprecated in HTML 4.01, and are no longer supported in HTML 5.


Tips and Notes

Tip: Use <del> instead!


Example

Source Output
A new version is <s>not yet available.</s> now available!
<br />
<br />
A new version is <strike>not yet available.</strike> now available!
A new version is not yet available. now available!

A new version is not yet available. now available!


From http://www.w3schools.com (Copyright Refsnes Data)