How to Strike Through a Sentence
- 1). Open your HTML source code file in the Notepad application. Notepad is a text editor that comes with Windows.
- 2). Place the following lines of CSS code between the <body> and </body> tags:
<style type="text/css">
.strike {text-decoration: line-through;}
</style> - 3). Enter the following code at the beginning of any sentence you'd like to use strikethrough on:
<div> - 4). Type this at the end of the sentence you used strikethrough on:
</div>
You have successfully used the strikethrough text formatting option on a sentence.
Source...