Strike through & deleted text

Notes:

HTML strike tag | HTML s tag | HTML del tag:

We use html strike tag, del tag, or s tag, to strike through some text, or to draw a line over some text.
html u tag: is a paired tag used to draw a line below the text.
html strike tag : is a paired tag used to draw a line over the text.
html s tag: is a paired tag, stands for strike text.
html del tag: is a paired tag, stands for deleted text.

Example code:
<html>
<head>
<title>HTML strike, s and del tags</title>
</head>
<body>
Hi <strike>HTML!</strike> <br/>
Hi <s>HTML!</s> <br/>
Hi <del>HTML!</del> <br/>
</body>
</html>

Interview Questions: