HTML 文書や CSS ファイルの見本をつけておく。 Ctrl-x Ctrl-f で
Find File: ˜/public_html/directory 名/example.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 文書の総本山である。