HTML <strike> tag

HTML <strike> tag : Definition


• The HTML <strike> element is an inline element with strikethrough, or a line through it on a section/word of text.

• The <strike> element defines text which are no longer exist, correct, accurate or relevant. The text/word will be displayed with a line through it.


Html <strike> tag example 1:

<!DOCTYPE html>
<html>
<head>
<title>strike Tag example</title>
</head>
<body>



 <p>This is a paragraph with no strike <strike> element.</p>
 <p><strike>This is a paragraph with strike <strike> element.</p>
</body>
</html>


Output :


 

This is a paragraph with no strike <strike> element.

This is a paragraph with strike <strike> element.