2014年10月13日月曜日

開発環境

Head First HTML and CSS (Elisabeth Robson (著)、 Eric Freeman (著)、O'Reilly Media )のChapter 1(Getting to Know HTML: The Language of the Web)、EXERCISE(p.33)を解いてみる。

EXERCISE(p.33)

HTML (BBEdit, Emacs)

mission33.html

<html>
    <head>
        <title>Starbuzz Coffee's Mission</title>
        <style type="text/css">
            body {
                background-color: #d2b48c;
                margin-left: 20%;
                margin-right: 20%;
                border: 2px dotted black;
                padding: 10px 10px 10px 10px;
                font-family: sans-serif;
            }
        </style>
    </head>
    <body>
        <h1>
            Starbuzz Coffee's Mission 
        </h1>
        <p>
            To provide all the caffeine that you need to power your life. 
        </p>
        <p>
            Just drink it. 
        </p>
    </body>
</html>

0 コメント:

コメントを投稿