HTML Tag Reference
itemtype 属性
マイクロデータのタイプ
itemtype 属性は、itemscope 属性と組み合わせて使用される属性で、要素に付与されるマイクロデータのタイプを表します。
itemtype 属性の仕様
- この属性を使用できる要素
-
- すべての HTML 要素
itemtype 属性のサンプルソース
<!DOCTYPE html> <html lang="ja" itemscope="itemscope" itemtype="http://schema.org/WebPage"> <head> <meta charset="utf-8" /> <title itemprop="name">文書のタイトル</title> <meta itemprop="description" content="文書の概要テキスト" /> <link itemprop="author" href="http://example.com/aboutme/" /> </head>