Open In App
Related Articles

HTML <time> Tag

Improve Article
Improve
Save Article
Save
Like Article
Like

The <time> tag is used to display the human-readable date/time. It can also be used to encode dates and times in a machine-readable form. The main advantage for users is that they can offer to add birthday reminders or scheduled events to their calendars and search engines can produce smarter search results.

Syntax: 

<time attribute> Time... </time>

Attributes: This tag contains an optional attribute datetime which is used to define the date/time in a machine-readable form of the <time> element.

 

Example: 

HTML




<!DOCTYPE html>
<html>
  
<body>
    <h1>GeeksforGeeks</h1>
    <h2><time> Tag</h2>
  
    <p>
        I Wake up at <time>6.00</time
        in every morning.
    </p>
  
    <p>
        Jawahar lal Nehru birthday is celebrated 
        on <time datetime="2018--11-14 12:00">
            children's day.</time>
    </p>
</body>
  
</html>

Output: 

Supported Browsers:

  • Google Chrome 62.0 and above
  • Edge 18.0 and above
  • Internet Explorer not supported
  • Firefox 22.0 and above
  • Opera 49.0 and above
  • Safari 7.0 and above
Last Updated : 19 Jun, 2023
Like Article
Save Article
Similar Reads
Related Tutorials