폰트 Font

구글 웹폰트는 구글 웹폰트 가져다 그래로 사용

구글웹폰트에 없는 무료 폰트( 예: 프리텐다드)는 다운로드 받은 후 use any font 플러그인 사용
Assign 에서 p 제외하고 전부 할당해서 사용하면 됨

폰트 CSS 공통

/* 한글폰트 noto sans kr 적용 */
body,h3,h4,h5,h6,li,a,textarea, dl,dt,dd,td,th,button,label,input,select, option {
font-family: ‘Noto Sans KR’, sans-serif, ‘Nanum Gothic’, 나눔고딕; }
span {font-family: ‘Noto Sans KR’, sans-serif, ‘Nanum Gothic’, 나눔고딕; }
h1 { font-size:32px;font-weight:600;font-family: ‘Noto Sans KR’, sans-serif, ‘Nanum Gothic’, 나눔고딕; }
h2 { font-size:26px;font-weight:600;font-family: ‘Noto Sans KR’, sans-serif, ‘Nanum Gothic’, 나눔고딕; }
h3 { font-size:22px;font-weight:600;font-family: ‘Noto Sans KR’, sans-serif, ‘Nanum Gothic’, 나눔고딕; }
h4 { font-size:20px;font-weight:400;font-family: ‘Noto Sans KR’, sans-serif, ‘Nanum Gothic’, 나눔고딕; }
h5 { font-size:18px;font-weight:400;font-family: ‘Noto Sans KR’, sans-serif, ‘Nanum Gothic’, 나눔고딕; }
h6 { font-size:13px;font-weight:400;font-family: ‘Noto Sans KR’, sans-serif, ‘Nanum Gothic’, 나눔고딕; }
strong { font-family: ‘Noto Sans KR’, sans-serif, ‘Nanum Gothic’, 나눔고딕; }

/* word break */
body {word-break:keep-all;}

/* iphone */
a[href^=tel] {
color: inherit;
text-decoration: none;
}
/* mobile click blue highlight remove */
* {
-webkit-tap-highlight-color: transparent;
}

/* mobile font */
@media (max-width: 980px) {
.et_pb_text {
font-size:14px ;
line-height:1.6em;
}
}

노토산스 Noto sans kr
font-family: “Noto Sans KR”, sans-serif;

프리텐다드 Pretendard

/* pretendard font */

body,li,a,span,textarea,dl,dt,dd,td,th,button,label,input,select, option, strong {
font-family: ‘Pretendard’, sans-serif ; }
.et_pb_button {font-family: ‘Pretendard’, sans-serif; }
h1, h2, h3,h4,h5,h6 { font-family: ‘Pretendard’, sans-serif ;}

/* word break */
body {word-break:keep-all;}

/* iphone */
a[href^=tel] {
color: inherit;
text-decoration: none;
}
/* mobile click blue highlight remove */
* {
-webkit-tap-highlight-color: transparent;
}