Web制作課題Q16

<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>復習(3)画像と背景Q16</title>
<style>
body,h1,p,img {
  margin: 0;
  padding: 0;
}
body {
  font-family:
    "Hiragino Kaku Gothic ProN",
    Meiryo,
    sans-serif;  
  background-color: #696969;
  background-image: url(img/01.gif);
  background-repeat:repeat-y;
  background-position: 280px;
  padding: 50px 0 200px 0;
}
h1 {
  margin: 20px 0;
  color: #FFFFFF;
}
p {
  color:#FFFFFF;
}
</style>
</head>
<body>
<h1>Background Design</h1>
<p>Sharing your digital photos with family and friends is such an easy thing to do these days.</p>
</body>
</html>