「Head要素」の版間の差分

提供:Wiki@KDS
ナビゲーションに移動 検索に移動
編集の要約なし
編集の要約なし
1行目: 1行目:
== HTML4.01 Transitionalの場合 ==
== header記述の基本形 ==
 
<div class="html-source">
<div class="html-source">
<pre><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<pre><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
8行目: 7行目:
<meta http-equiv="content-script-type" content="text/javascript">
<meta http-equiv="content-script-type" content="text/javascript">
<meta http-equiv="content-style-type" content="text/css">
<meta http-equiv="content-style-type" content="text/css">
<meta name="keywords" content="">
メタ要素
<title>タイトル</title>
<title>タイトル</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" type="text/css" href="style.css">
15行目: 14行目:
<body></pre>
<body></pre>
</div>
</div>
== HTML4.01 Transitionalの場合 ==

2007年2月2日 (金) 12:08時点における版

header記述の基本形

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.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>

HTML4.01 Transitionalの場合