HTML <del> tag

HTML <del> tag : Definition

• The HTML <del> tag is used to identify text that has been deleted from a web page/document and yet remain to show the history of changes made to the document.

• The deleted text is by default rendered as strikethrough text by the web browsers.

• This property can be changed by using CSS text-decoration property.

• This <del> tag requires a starting and ending tag.

;

<del> tag example :

<!DOCTYPE html>  
<html>  
<body>  
The HTML <del> tag is used to identify text that has been <del> deleted from a web 
page</del> and yet remain to show the <ins>history of changes made to the document</ins>.
</body>  
</html>

OUTPUT :





  The HTML <del> tag is used to identify text that has been  deleted from a web 
  page and yet remain to show the history of changes made to the document.