※html시리즈는 유튜버 윤인성님의 영상을 보고 정리한 것 입니다.
구글폰트
영상에서는 무료폰트로 진행
폰트를 고르기 > select style > Selected families > Embed > <link>
태그 복사
<link href="https://fonts.googleapis.com/css2?family=Lobster&family=Nanum+Gothic:wght@400;700&display=swap"
rel="stylesheet">
<style>
h1 {
font-family: 'Lobster', cursive;
}
p {
font-family: 'Nanum Gothic', sans-serif;
}
</style>