del datetime Attribute - HTML CSS HTML Tag

HTML CSS examples for HTML Tag:del

Description

The datetime attribute sets the date and time when the text was deleted.

The datetime attribute has no visual effect in ordinary web browsers.

Attribute Values

Value Description
YYYY-MM-DDThh:mm:ssTZD The date and time of when the text was deleted.
  • YYYY - year (e.g. 2012)
  • MM - month (e.g. 01 for January)
  • DD - day of the month (e.g. 08)
  • T or a space - a separator (required if time is also specified)
  • hh - hour (e.g. 22 for 10.00pm)
  • mm - minutes (e.g. 55) ss - seconds (e.g. 03)
  • TZD - Time Zone Designator (Z denotes Zulu, also known as Greenwich Mean Time)

A deleted text, with a date and time of when the text was deleted:

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<body>

<p><del datetime="2020-11-15T22:55:03Z">This text has been deleted</del></p>

</body><!--  w  ww  .  j  a v  a 2s  .  c  o m-->
</html>

Related Tutorials