JAVA_EE/CSS
[21.09.16] exam03(03_cssColorText) -
luvforjunk
2021. 9. 16. 21:08
728x90
반응형
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<style type="text/css">
body {
font-family: "Times New Roman", Serif;
font-family는 폰트만 지정한다
exam03 - times new roman 을 찾아라. 없으면, serif 를 써라. serif도 없으면 윈도우 기본 폰트를 써라.
font-size: Large;
}
h3 {
font: italic bold 40px consolas, sans-serif;
font는 굵기, 폰트, 크기를 다 지정할 수 있다
}
</style>
</head>
<body>
<h3>Consolas font</h3>
<hr>
<p style="font-weight: 900">font-weight 900</p>
<p style="font-weight: 100">font-weight 900</p>
<p style="font-style: Italic;">Italic Style</p>
<p style="font-style: oblique;">oblique Style</p>
<p>현재 크기의 <span style="font-size:1.5em;">1.5배</span>크기로</p>
</body>
</html>
728x90
반응형