<html> 要素
は、文書(HTMLファイル)の中で、すべての要素を含むように一番外側に配置されます。<html> 要素
の直下には<head> 要素
と<body> 要素
のみを配置し、その他の要素は全てhead
とbody
のいずれかに配置します。
- カテゴリー
- なし
- 配置場所
- すべての要素を含む一番外側
- 内容
<head> 要素
と<body> 要素
- 属性
-
manifest="URL"
- オフラインで動作するWebアプリケーションでアプリケーション・キャッシュを利用するためにキャッシュ・マニフェストのURLを指定します。
<html manifest="manifest.appcache">
- グローバル属性
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 › html</title>
</head>
<body>
<h1>HTML5 › html</h1>
<p>
これはHTML5のhtml要素のサンプルです。
</p>
</body>
</html>