HTML <strike> Tag (Obsolete)
The <strike> tag is obsolete in HTML5. It was used for strikethrough text. Do not use it in new code. Use <s> for content that is no longer accurate or relevant, or <del> for deleted content in an edit history.
Use <s> or <del>
<s> = content that is no longer accurate or relevant (e.g. old prices). <del> = deleted content in a change or edit history (can have cite, datetime). Both render with strikethrough and have clear semantics. Replace any <strike> in legacy code with <s> or <del> as appropriate.
Best practices
Never use <strike> in new HTML. Browsers may still render it for backward compatibility, but validators will flag it as obsolete. Prefer <s> or <del> for accessibility and standards compliance.
