Latest web development tutorials

HTML time datetime attribute

HTML time Tag Reference HTML <time> tag

Examples

Specified date time elements:

<P> I <time datetime = "2008-02-14"> Valentine's Day </ time> have an appointment. </ P>

try it"

Browser Support

Internet ExplorerFirefoxOperaGoogle ChromeSafari

datetime property does not render any special effects in all browsers.


Definition and Usage

datetime attribute specifies the date or time. When the date or time is not specified in the content of the element, the use of the property.


Differences between HTML 4.01 and HTML5

<Time> tag HTML5 is the new label.


grammar

<time datetime="YYYY-MM-DDThh:mm:ssTZD">

Property Value

描述
YYYY-MM-DDThh:mm:ssTZD

日期或时间。下面解释了其中的成分:

  • YYYY - 年 (例如 2011)
  • MM - 月 (例如 01 表示 January)
  • DD - 天 (例如 08)
  • T - 必需的分隔符,若规定时间的话
  • hh - 时 (例如 22 表示 10.00pm)
  • mm - 分 (例如 55)
  • ss - 秒 (例如 03)
  • TZD - 时区标识符 (Z 表示祖鲁,也称为格林威治时间)


HTML time Tag Reference HTML <time> tag