CYBER@GARDEN

『Web標準の教科書』各章

home > 『Web標準の教科書』読者サポートページ > 第2章 第4節

第2章 第4節(p.45-48)

<head>
  <title>Webの仕組みを理解する</title>
</head>
[悪いソース]
<title>説明</title>
[よいソース]
<title>HTMLとXHTMLとの違い</title>
[悪いソース]
<title>第3章</title>
[よいソース]
<title>第3章 HTMLとXHTMLの違い - XHTML概論</title>
[悪いソース]
<title>文書型宣言、MIMEタイプ、空要素、script要素とstyle要素、 name属性とid属性などに関するHTMLとの違い - XHTML概論</title>
<head>
  <meta http-equiv="Content-Type"
   content="application/xhtml+xml; charset=Shift_JIS" />
  <title>Webの仕組みを理解する</title>
</head>
Header append Content-Type "application/xhtml+xml; charset=Shift_JIS"
AddType "application/xhtml+xml; charset=Shift_JIS" .html
<head>
  <meta http-equiv="Content-Type"
   content="application/xhtml+xml; charset=Shift_JIS" />
  <title>Webの仕組みを理解する</title>
  <meta name="description" content="HTML、HTTP、URIなどWebの
   基本的な仕組みとURIの構造を説明。" />
  <meta name="keywords" content="Web, WWW, 仕組み, HTML,
   HTTP, URI, リンク" />
</head>