Welcome ðŸŽ‰

logo

ReactLMS

Search
Light Mode
Contact Us

1 min to read

Contact us

No results for your search.
Sorry, an unexpected error occurred

Concept


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.


Usage


<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.


Read more
On This Page