基礎プログラミング I 第8回 電子チケットを作ろう 「HTML 文書の見本」 (講義ノート)

とする。必要な構造は


<html>
<head>
<link rel="stylesheet" type="text/css" href="example.css">
</head>
<body>

  本文

</body>
</html>

であった。 example.css は同じ directory に置く。 従って ˜/public_html/directory 名/example.css として


p {
color: white; background: green;
} h1 {
font-size: 20pt; text-align: center;
}

などと書く。色については 色見本 などを参考に、 見やすい組み合わせを選ぶこと。なお w3.org は HTML 文書の総本山である。