본문 바로가기

웹 프로그래밍/CSS

[CSS] 폰트 적용하기(폰트 다운로드 / 구글 폰트 사용 : link, import)

1. link를 붙인다

2. font-family에 해당 글꼴명을 넣는다.

그러면 적용 된다!

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<link href="https://fonts.googleapis.com/css2?family=Nanum+Gothic&display=swap" rel="stylesheet">
<style>
	div {
		/* font-size: xx-small; */
		/* font-size: small; */
		/* font-size : 20px; */
		/* font-size : 1.8em; */
		font-size : 12pt;
		font-family : 'Nanum Gothic', "나눔바른펜", "궁서"; /* 굴림체를 먼서 사용해. 만약 굴림체가 없다면 궁서체를 써 */
	}
	
	.class01 {
		font-size : 16pt;
		font-family: "고딕"
	}

</style>



</head>
<body>
	이것은 무엇일까요
	<div>안녕하세용~~? SHOW ME THE MONEY</div>
	<div>반갑읍니다.</div>
	<div class = "class01">WELCOME 환영합니다@@@@ WOW</div>

</body>
</html>

 

import를 해서 적용할 수도 있다.

<style> 여기에 @import </style>

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<link href="https://fonts.googleapis.com/css2?family=Nanum+Gothic&display=swap" rel="stylesheet">
<style>
	@import url('https://fonts.googleapis.com/css2?family=Nanum+Gothic&family=Shadows+Into+Light&display=swap');
	div {
		/* font-size: xx-small; */
		/* font-size: small; */
		/* font-size : 20px; */
		/* font-size : 1.8em; */
		font-size : 12pt;
		font-family : 'Nanum Gothic', "나눔바른펜", "궁서"; /* 굴림체를 먼서 사용해. 만약 굴림체가 없다면 궁서체를 써 */
	}
	
	.class01 {
		font-size : 16pt;
		font-family: "고딕"
	}
	
	.div02{
		font-size : 16;
		min-height : 200px; /* 최소한의 높이값을 지정하는 것 */
		font-family: 'Shadows Into Light';
		font-weight : 800; /* 글자 굵기 */
		background-color: lightgray; /* div 배경의 컬러를 지정 */
		
	}

</style>



</head>
<body>
	이것은 무엇일까요
	<div>안녕하세용~~? SHOW ME THE MONEY</div>
	<div>반갑읍니다.</div>
	<div class = "class01">WELCOME 환영합니다@@@@ WOW</div>
	<div class = "div02">Black Sheep Wall</div>

</body>
</html>