2014年11月15日土曜日

開発環境

Head First HTML and CSS (Elisabeth Robson (著)、 Eric Freeman (著)、O'Reilly Media )のChapter 6(Standards and All that Jazz: Getting Serious with HTML)、BE THE VALIDATOR(p.248)を解いてみる。

BE THE VALIDATOR(p.248)

HTML (BBEdit, Emacs)

<!doctype html>
<html>
  <head>
    <meta charset="utf-8">
    <title>Be the validator</title>
  </head>
  <body>
    <img src="chamberofcommerce.gif" alt="Chamber of commerce">
    <h1>Tips …</h1>
    <p>
      Here …
    </p>
    <ul>
      <li> Alwas …</li>
      <li>Get …</li>
      <li>Don't …</li>
    </ul>
    <p>
      Having … at
      <a href="http://wickedlysmart.com"><em>WickedlySmart</em></a>
    </p>
    <p>
      <em>Don't …</em>
    </p>
  </body>
</html>  

0 コメント:

コメントを投稿