time

<time> 要素は、datetime 属性とともに、コンピュータが読み取り可能な書式による日付や時刻を表します。datetime 属性の指定がない場合は、内容はコンピュータが読み取り可能な書式のテキストでなければいけません。内容は、日付、時刻、時間帯オフセット、及び継続期間の各種に限定されます。

カテゴリー
フロー・コンテンツ、パルパブル・コンテンツ、フレージング・コンテンツ
配置場所
フレージング・コンテンツが置ける場所。
内容
フレージング・コンテンツ
属性
datetime=""
コンピュータが読み取り可能な日付・時刻のフォーマット文字列を指定します。
グローバル属性

accesskey, autocapitalize, autofocus, class, contenteditable, data-*, dir, draggable, enterkeyhint, hidden, id, inputmode, is, itemid, itemprop, itemref, itemscope, itemtype, lang, nonce, spellcheck, style, tabindex, title, translate

サンプル

<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8" />
<title>HTML5 › time</title>
</head>
<body>
<h1>HTML5 › time</h1>
<article itemscope itemtype="http://n.example.org/rfc4287">
<h2 itemprop="title">求む、ステロイド軟膏</h2>
<footer>公開:<time itemprop="published" datetime="2016-09-21">2日前</time>.</footer>
<p itemprop="content">いやぁ、今日は股間がカユくてドコにも行きたくないよ。</p>
</article>
</body>
</html>