言語を指定する

html要素にはlang属性XHTMLにはxmlns属性(XHTMLのみ)を指定することが推奨されています。

言語は日本語なら"ja"、英語なら"en"ですが、省略も可です。

<!--XHTML1.0-->
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML1.0 Strict//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="https://www.w3.org/1999/xhtml" lang="ja" xml:lang="ja">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="description" content="サイトの詳細" />
<meta name="keywords" content="キーワード,カンマ,くぎる" />
</head>
	<body>
	ここに本文
	</body>
</html>

<!--HTML5-->
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8" />
<meta name="description" content="サイトの詳細" />
<meta name="keywords" content="キーワード,カンマ,くぎる" />
</head>
	<body>
	ここに本文
	</body>
</html>

コメントor補足情報orご指摘あればをお願いします。

(件名or本文内でキーワード検索できます)



  • << 前のページ
  • 次のページ >>
ページトップへ