Show Output
<!DOCTYPE html> <html lang="en"> <head> <title>Example of HTML strike tag</title> </head> <body> <h2>Don't use this tag</h2> <p>Here is some <strike>strikethrough</strike> text.</p> <h2>Alternative</h2> <p>Here is a good example of <span style="text-decoration: line-through;">strikethrough</span> text.</p> <p><strong>Note:</strong> To learn more about style rules please study tutorials on <a href="#">CSS</a>.</p> </body> </html>