The <time> tag in HTML is used to mark and display information about time or date in an HTML document.
It provides a standard way to display time and date on web pages.
<p>Ngà y sinh của tôi là : <time datetime="1990-05-15">15 tháng 5, 1990</time></p>
Result
Ngà y sinh của tôi là :
In this example, the <time> tag is used to display the author's date of birth as "May 15, 1990". The value of the datetime attribute is "1990-05-15" to accurately determine the time.