cssbasic3

by rootjang

HTML

<!DOCTYPE html>
<html lang="ko-KR">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>CSS Basci</title>
  <style>
    #container {
      background: #ff6a00;
      width: 400px;
      height: 200px;
      margin: 0 auto;
    }

    h2.bluetext {
      color: blue;
    }

    .redtext {
      color: red;
    }

  </style>
</head>
<body>
  <div id="container">
    <h1>블루베리에 관한 연구</h1>
    <h2 class="bluetext">블루베리의 항산화 효능</h2>
    <p class="bluetext">블루베르는 항산화제인 ~~ 있습니다.</p>
    <p>매사츄세츠 보스톤에 있는 <span class="redtext">USDA 노화에 관한 연구</span></p>
  </div>
</body>
</html>