
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
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 Deleted Text in HTML
Use the <del> tag to display the deleted text. The following are the attributes −
Attribute |
Value |
Description |
---|---|---|
Cite |
URL |
Defines a URL to another document which explains why the text was deleted. |
Datetime |
YYYYMMDD HH:MM:SS |
Defines the date and time the text was deleted. |
Example
You can try to run the following code to display deleted text −
<!DOCTYPE html> <html> <head> <title>HTML del Tag</title> </head> <body> <p> The following text is deleted using <del>HTML del tag</del> </body> </html>
Advertisements