では、ページファイルを index.html 。 CSSファイルを def.css として説明していく。
index.html の内容を以下のようにする。 ヘッダの中(5行目)で def.css を定義しているのに注目しよう。
設定はその一行だけである。
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<title>サイトのタイトル</title>
<link href="def.css" rel="stylesheet" type="text/css">
</head>
<body>
本文
</body>
</html>
次に、def.css ファイルを作成し、内容を以下のようにする。
body { margin: 0px;
dding: 0px;
ackground-color: #FFFFFF;
olor: #000000;
}
これで終わりである。上記 def.css はあくまで一例であり、内容は好きにしてかまわない。ファイル名も自由にしてくれ。
|