Computer >> Computer tutorials >  >> Programming >> HTML

How to display human readable date in HTML?


Use the HTML <time> tag is used for displaying the human-readable date and time. The following is the attribute −

Attribute
Value
Description
datetime How to display human readable date in HTML?
datetime
it is machine readable date time

Example

You can try to run the following code to display time −

<!Doctype html>
<html>
   <head>
      <title>HTML time Tag</title>
   </head>
   <body>
      <p>The time is <time>18:16 pm</time></p>
   </body>
</html>