|
|
属性 (W3C) |
<body | H2- ie1- N1- |
|
>(%block;|%inline;)* +(ins|del) (%block;|script)+ +(ins|del) | H41T H41F H41S |
</body> |
ブラウザ独自の属性 (ie N) |
|
1. HTMLのバージョン
2. 文書ヘッダ
3. 文書本体
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>タイトル</title>
<!--文書ヘッダ-->
</head>
<body>
テキスト
<!--文書本体-->
</body>
</html>
<html>
<head>
<title>タイトル</title>
<!--文書ヘッダ-->
</head>
<body>
テキスト
<!--文書本体-->
</body>
</html>
<html>
<head>
<title>タイトル</title>
<!--文書ヘッダ-->
</head>
<!--フレーム-->
<frameset cols="150,*">
<frame src="source1.htm" name="menu">
<frame src="source2.htm" name="content">
</frameset>
</html>
<html>
<head>
<style type="text/css"><!--
body {
background-color:#fff; /* bgcolor属性 背景色 */
background-image:url('img/white.gif'); /* background属性 背景画像 */
color:#000; /* text属性 文字色 */
}
a:link {color:#00f; text-decoration:underline;} /* link属性 リンク色 */
a:visited {color:#909; text-decoration:underline;} /* vlink属性 訪問済みリンク色 */
a:hover {color:#069; text-decoration:underline;} /* マウスポイント時のリンク色 */
a:active {color:#069; text-decoration:underline;} /* alink属性 クリック時のリンク色 */
--></style>
</head>
<body>
...
</body>
</html>