글자(Text) 관련 스타일(1) 포스팅에서 font-family에 대해 알아보았다. 이번에는 font-style과 font-weight 에 대해 알아보자. font-style font-style로 가능한 값은 normal, italic, oblique 등이 있다. normal은 말 그대로 기본 값이며, 기본 글자체이다. italic 은 이텔릭체가 디자인되어 있는 기울인 스타일이고, oblique 은 단지 글자를 기울인 스타일이다. @import url('https://fonts.googleapis.com/css?family=Nanum+Pen+Script&display=swap'); h1, p { font-family: 'Nanum Pen Script', cursive; } h1{ font-style: ..