HTML s tag
HTML

HTML s tag

Mishel Shaji
Mishel Shaji

The HTML s tag displays text with a line through it. This tag is used to denote text that is no longer accurate or relevant. It should not be used to represent deleted text. To represent deleted text, use <del> tag.

Example

<p>This text is <s>no longer</s> relevant.</p>

Output

This text is no longer relevant.