본문 바로가기
아이들의 교육/HTML

[CSS 공부] 백그라운드, 폰트, 글자크기(background, font, pixel)

by 섹시맘1004 2019. 8. 8.
반응형

[CSS 공부] 백그라운드, 폰트, 글자크기(background, font, pixel)

 

유네스코 지정 마을(경주 양동민속마을)

<!DOCTYPE html>

<html>

 <head>

  <style>

  body {

   background-color : lightblue;

          }

  h1 {

   color:white;

   text-align:center;

       }

  p {

   font-family:고딕;

   font-size:20px;

     }

   </style>

 </head>

 <body>

  <h1>백그라운드 color는 lightblue(라이트블루)</h1>

  <p>글씨체는 고딕체, 글자크기는 20픽셀</p>

 </body>

</html>


실행

css background


css.txt
0.00MB

html css 파일

반응형