아이들의 교육/HTML
[CSS 공부] 백그라운드, 폰트, 글자크기(background, font, pixel)
섹시맘1004
2019. 8. 8. 09:14
반응형
[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>
실행
html css 파일
반응형