w3resource

HTML5: How to specify the date and time when the text was inserted/changed?

Go to Exercise page

Solution:

HTML Code:

<!DOCTYPE html><!-- Declares the document type and version of HTML -->
<html>
<head>
<meta charset="utf-8"><!-- Specifies the character encoding for the document -->
<title>How to specify the date and time when the text was inserted/changed </title><!-- Sets the title of the document -->
</head>
<body>
<p> The elements and attributes those usage have been changed in HTML5 <!-- Starts a paragraph -->
<ins datetime="2014-02-20T10:30:03Z"><!-- Represents inserted text with a datetime attribute to specify the date and time when the text was inserted or changed -->
(in comparison with HTML4.01)...</ins></p><!-- The inserted text -->
</body>
</html>

Explanation:

  • The HTML document starts with a declaration of its type and version (<!DOCTYPE html>).
  • The <html> element encloses the entire HTML document.
  • The <head> section contains metadata about the document, including the character encoding (<meta charset="utf-8">) and the title of the document (<title>).
  • Inside the <body> section, there's a <p> element, which represents a paragraph of text.
  • Within the paragraph, there's an <ins> element, which indicates inserted text. The datetime attribute specifies the date and time when the text was inserted or changed. In this case, the datetime attribute is set to "2014-02-20T10:30:03Z" to indicate February 20, 2014, at 10:30:03 AM UTC.
  • The text "(in comparison with HTML4.01)..." is marked as inserted text and displayed in the paragraph.

Live Demo:

See the Pen insert-datetime-answer by w3resource (@w3resource) on CodePen.


See the solution in the browser

Supported browser

Firefox logo Chrome logo Opera logo Safari logo Internet Explorer logo
YesYesYesYesYes

Go to Exercise page

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.