본문 바로가기

css

9장 실습1

<!DOCTYPE html>
<html lang="ko">
<head>
  <meta charset="UTF-8">
  <title>문서 전체에 배경 이미지 넣기 </title>
  <style>
    body {
      background:url("bg5.jpg")left top no-repeat fixed;
      background-size:cover;
    }
    h1 {
      margin-top:150px;
      font-size:80px;
      text-align:center;
      color:#fff;
      text-shadow:2px 2px #000;
    }
  </style>
</head>
<body>
  <h1>Do it!</h1>
</section>
</html>