크기, 종류, 형태
font-family(폰트 종류)
font-family: '폰트이름1' '폰트이름2';
링크를 통해 폰트를 불러오는 방식
구글폰트를 적용하는 예제다
@import url('<https://fonts.googleapis.com/>
css2?family=Nanum+Pen+Script&display=swap');
h1 , p{
font-family: 'Nanum Pen Script', cursive;
color : blue;
}