font
by rootjang
HTML
<!DOCTYPE html>
<html lang="ko-KR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>font</title>
<style>
p.txt {
font: italic 12px/24px 돋움;
}
</style>
</head>
<body>
<p class="txt">여러 요소가 함께 사용되는 font 태그</p>
<p>그냥 p태그</p>
<p style="font:caption">[font:caption] 캡션에 어울리는 글꼴 스타일</p>
<p style="font:icon">[font:icon]아이콘에 어울리는 글꼴 스타일</p>
<p style="font:menu">[font:menu]메뉴에 어울리는 글꼴 스타일</p>
<p style="font:message-box">[font:message-box]메세지 박스에 어울리는 글꼴 스타일</p>
<p style="font:small-caption">[font:small-caption]작은 캡션</p>
<p style="font:status-bar">[font:status-bar]상태 표시줄</p>
</body>
</html>