리그캣의 개발놀이터

css-글씨 색상 지정 본문

프로그래밍 언어/HTML,CSS

css-글씨 색상 지정

리그캣 2018. 1. 21. 17:25

css-글씨 색상 지정


1
2
3
4
5
6
7
8
9
10
11
12
13
<html><head><title>embeded-style</title>
<style type="text/css">
    h3 {background : yellow;}
    p {color : blue}
    p b {background:lightblue; font-style:italic}
</style>
</head>
<body>
   <h2>머리글 h2 글씨체입니다.</h2>
   <h3>머리글 h3 내용이 표시되는 부분의 배경을 노란색으로...</h3>
   <p>단락에서의 글자색은 <b>파란색 이태릭체</b>로..
</body>
</html>
cs


'프로그래밍 언어 > HTML,CSS' 카테고리의 다른 글

css-layer 나누기 퀴즈  (0) 2018.01.21
javascript - alert 사용하기  (0) 2018.01.21
CSS - Newelement.html  (0) 2018.01.21
CSS - layer 이해하기  (0) 2018.01.21
JAVASCRIPT - 간단한 버튼 함수 만들기  (0) 2018.01.21
Comments