
- HTML Tutorial
- HTML - Home
- HTML - Overview
- HTML - Basic Tags
- HTML - Elements
- HTML - Attributes
- HTML - Formatting
- HTML - Phrase Tags
- HTML - Meta Tags
- HTML - Comments
- HTML - Images
- HTML - Tables
- HTML - Lists
- HTML - Text Links
- HTML - Image Links
- HTML - Email Links
- HTML - Frames
- HTML - Iframes
- HTML - Blocks
- HTML - Backgrounds
- HTML - Colors
- HTML - Fonts
- HTML - Forms
- HTML - Embed Multimedia
- HTML - Marquees
- HTML - Header
- HTML - Style Sheet
- HTML - Javascript
- HTML - Layouts
- HTML References
- HTML - Tags Reference
- HTML - Attributes Reference
- HTML - Events Reference
- HTML - Fonts Reference
- HTML - ASCII Codes
- ASCII Table Lookup
- HTML - Color Names
- HTML - Entities
- HTML - Fonts Ref
- HTML - Events Ref
- MIME Media Types
- HTML - URL Encoding
- Language ISO Codes
- HTML - Character Encodings
- HTML - Deprecated Tags
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 Articles
- How to mark strikethrough text in HTML?
- Strikethrough text with CSS
- Display subscripted text in HTML
- How to display deleted text in HTML?
- How to create a strikethrough text using JavaScript?
- 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?
- 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?
- How to include an alternate text when the original element fails to display in HTML?
- HTML Text Formatting
- Create small text in HTML
- Create strong text in HTML

Advertisements