HTML strike tag

The <strike> tag is not supported in HTML5. Strike through text in HTML document. Strike text is used to display the text as Strike text.

Strike text uses <strike> tag. Any text in between <strike>..</strike> displays as strike text. <strike> element is nested element.

Syntax -
<strike>.. text here.. </strike>
Example -
<!DOCTYPE html>
<html>
	<head>
		<title>Strike text example.. </title>
	</head>
	<body>
		<p>This is <striked>Strike</strike> text</p>
	</body>
</html>
Output -

This is Striked text.