開発環境
- OS X Mavericks - Apple(OS)
- Safari, Firefox + Firebug, Google Chrome(Webプラウザ、プラグイン)
- BBEdit - Bare Bones Software, Inc. (GUI) , Emacs (CUI) (Text Editor)
- HTML (マークアップ言語)
- Cascading Style Sheets(CSS) (スタイルシート)
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)
<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 コメント:
コメントを投稿