HTML 헤드 부분에 <link> 태그로 넣어주기
<html>
</head>
<link
type="text/css"
media="screen"
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Nanum+Gothic&display=swap"
/>
</head>
</html>
CSS로 넣은 폰트 사용하기
body {
font-family: 'Nanum Gothic'
}
CSS로 넣고, 바로 사용하기
@import url('https://fonts.googleapis.com/css2?family=Nanum+Gothic&display=swap');
body {
font-family: 'Nanum Gothic'
}
반응형