반응형
[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 파일
반응형
'아이들의 교육 > HTML' 카테고리의 다른 글
✅[HTML CSS] InIine css <h1 style="color:blue;"> (0) | 2020.01.16 |
---|---|
링크빌딩이란? 무엇인가?(내부링크, 외부링크, 백링크, 앵커 텍스트) (0) | 2019.11.21 |
[css study] The color of this writing is red. (0) | 2019.07.27 |
구글 검색엔진최적화 (0) | 2019.06.30 |
title 태그 권장사항 (0) | 2019.06.30 |