10. 폰트관련스타일
.NET프로그래밍/CSS 2.0 2009. 7. 28. 11:57 |<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>폰트(font)관련스타일</title>
<style type="text/css"">
body { color:Navy; font-size:15pt; font-family: 맑은 고딕; }
.boldText { font-weight:bold; }
#italicText { font-style:italic; }
.strikeText{ text-decoration:line-through overline; }
</style>
</head>
<body>
글자 모양 관련 3가지 : 색상, 크기, 글꼴 <br />
<b>볼드체</b> <span class="boldText">볼드체</span> <br />
<i>이탤릭체</i> <span id="italicText">이탤릭체</span> <br />
<u>밑줄</u> <span style="text-decoration:underline;">밑줄</span> <br />
<s>취소선1</s> <strike>취소선2</strike> <span class="strikeText">취소선3</span>
</body>
</html>
< 실행결과 >
'.NET프로그래밍 > CSS 2.0' 카테고리의 다른 글
12. 텍스트관련스타일 (0) | 2009.07.28 |
---|---|
11. 정렬관련스타일 (0) | 2009.07.28 |
9. 영역설정태그- <div>와 <span>태그 (0) | 2009.07.28 |
8. 중첩태그 (0) | 2009.07.28 |
7. 중첩클래스 (0) | 2009.07.27 |