「Head要素」の版間の差分
ナビゲーションに移動
検索に移動
編集の要約なし |
編集の要約なし |
||
| 3行目: | 3行目: | ||
<h2>header記述の基本形</h2> | <h2>header記述の基本形</h2> | ||
<div class="section"> | <div class="section"> | ||
<div class="html-source"> | |||
<pre>DTD宣言 | |||
<html lang="ja"> | <html lang="ja"> | ||
<head> | <head> | ||
| 16行目: | 16行目: | ||
</head> | </head> | ||
<body></pre> | <body></pre> | ||
</div> | |||
</div> | </div> | ||
<h2>DTD宣言</h2> | <h2>DTD宣言</h2> | ||
<div class="section"> | <div class="section"> | ||
<h3>HTML4.01 Transitionalの場合</h3> | |||
<div class="html-source"> | |||
</div> | |||
</div> | </div> | ||
2007年2月2日 (金) 12:29時点における版
header記述の基本形
DTD宣言 <html lang="ja"> <head> <meta http-equiv="content-type" content="text/html; charset=文字コード名"> <meta http-equiv="content-script-type" content="text/javascript"> <meta http-equiv="content-style-type" content="text/css"> メタ要素 <title>タイトル</title> <link rel="stylesheet" type="text/css" href="style.css"> <script type="text/javascript" src="script.js"></script> </head> <body>