17 lines
348 B
HTML
17 lines
348 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>HTML5 time tag</title>
|
|
</head>
|
|
<body>
|
|
|
|
<p>We open at <time>10:00</time> every morning.</p>
|
|
|
|
<p>I have a date on <time datetime="2008-02-14">Valentines day</time>.</p>
|
|
|
|
<p><b>Note:</b> The time element does not render as anything special in any of the major browsers.</p>
|
|
|
|
</body>
|
|
</html>
|