HTML CSS examples for HTML Tag:ins
The datetime attribute sets when the text was inserted/changed.
The datetime attribute has no visual effect, but can be used by screen readers.
Value | Description |
---|---|
YYYY-MM-DDThh:mm:ssTZD | Specifies the date and time of when the text was inserted/changed. |
Explanation of components:
An inserted text, with a date and time of when the text was inserted:
<!DOCTYPE html> <html> <body> <p>This is a text. <ins datetime="2020-09-15T22:55:03Z">This is an inserted text.</ins></p> </body><!--from ww w.j a v a2 s.co m--> </html>