font-family

body {
			font-family: "돋움", "맑은 고딕", "굴림";
}

font-size

<!DOCTYPE html>
<html lang="ko">
<head>
	<meta charset="UTF-8">
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
	<title>Document</title>
	<style>
		.p1_size1 {
			font-size: xx-small;
		}
		.p1_size2 {
			font-size: medium;
		}
		.p1_size3 {
			font-size: xx-large;
		}
		.p1_size4 {
			font-size: 10px;
		}
		.p1_size5 {
			font-size: 1.5em;
		}
		.p1_size6 {
			font-size: 1.5rem;
		}
	</style>
</head>
<body>
	<div style="font-size: 20px;">
		<p class="p1_size1">폰트 크기 xx-small</p>
		<p class="p1_size2">폰트 크기 medium</p>
		<p class="p1_size3">폰트 크기 xx-large</p>
		<p class="p1_size4">폰트 크기 px</p>
		<p class="p1_size5">폰트 크기 em</p>
		<p class="p1_size6">폰트 크기 rem</p>
	</div>
</body>
</html>

Untitled

font-weight