기본적으로 구글 폰트를 사용함.
아래는 기본적인 CSS 적용법
https://seoulrain.net/2018/06/10/wordpressgooglefont/
@import url('https://fonts.googleapis.com/css2?family=Nanum+Gothic+Coding&Hi+Melody&family=Poor+Story&display=swap');
body, button, input, select, textarea
{
font-family: 'Hi Melody', 'Poor Story', cursive;
font-size: 15px;
font-size: 1.5rem;
}
code {
font-family: 'Nanum Gothic Coding', monospace;
font-size: 15px;
font-size: 1.5rem;
}
blockquote {
font-size: inherit;
}
그런데 이렇게해도 paragraph 는 적용이 안되더라.
html 로 바로 적어서 하나하나
<p style="font-family: Poor Story;">- #음악, #청춘, #개그</p>
이렇게 적용할 수도 없는 노릇이고.
그런데 Google Fonts Typography 쓰니까 에디터에서도 적용되고 다됨.
근데 wp 뉴비라서 이거 style.css 이런거 어케 수정한지 모르겠음