

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Display strikethrough text in HTML
The HTML <strike> tag specifies strikethrough text. This tag is deprecated now, use <del> instead. The HTML <del> tag is used for markup of deleted text i.e. strikethrough text.
Example
You can try to run the following code to display strikethrough text in HTML −
<!DOCTYPE html> <html> <head> <title>HTML strike Tag</title> </head> <body> The HTML strike tag renders a <del>strike</del> through the middle of the text. </body> </html>
- Related Questions & Answers
- How to mark strikethrough text in HTML?
- Strikethrough text with CSS
- Display subscripted text in HTML
- How to create a strikethrough text using JavaScript?
- How to display deleted text in HTML?
- How do we display inserted text in HTML?
- How do we display a text area in HTML?
- How to display text Right-to-Left Using HTML?
- How do we include the direction of text display in HTML?
- HTML Text Formatting
- How do we display the visible width of a text area in HTML?
- How to display a URL which explains the quote/deleted/inserted text in HTML?
- Create small text in HTML
- Create strong text in HTML
- Create superscripted text in HTML
Advertisements