HTML Text Formatting Tutorial - Strike-Through Text
Description:
How to make strike-through text in an html page.
Code:
<html><body>
This is normal text.
<s>This is strike-through text.</s>
This is normal and <s>this is strike-through</s> text.
</body></html>
Play with the code:
See working example:
Explanation:
To make strike-through text in an html page, you just have to surround the text you want strike-through
in the <u></u> tags or the <strike></strike> tags.