Stephen 기술블로그 | 개발 공부 및 튜토리얼
/
VueJS
/
노트 갈기기
/
글꼴 설치
Search
Share
글꼴 설치
글꼴
Browse Fonts - Google Fonts
Making the web more beautiful, fast, and open through great typography
글꼴 설치
// app global css in SCSS form
@
import
url
(
'https://fonts.googleapis.com/css2?family=New+Amsterdam&display=swap'
)
;
body
{
font
-
family
:
'New Amsterdam'
,
sans
-
serif
;
}
JavaScript
복사