/* 폰트 초기화 */
body, input, textarea, select, button, table {
font-family: AppleSDGothicNeo-Regular, 'Malgun Gothic', '맑은 고딕', dotum, '돋움', sans-serif;
}
윈도우는 설정이 좀 다를 수 있음 ㅠ
윈도우와 맥의 폰트를 동일하게 해주면 padding 의 차이를 좀 줄일 수 있음!
나눔고딕을 제일 많이 씀 - Google Fonts
위 이미지에서 link 부분을 복사한다.
<!-- CSS STYLE -->
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
<!-- 웹 폰트 -->
<link href="https://fonts.googleapis.com/css2?family=Nanum+Gothic&display=swap" rel="stylesheet">
아래 이미지를 복사하여 css 에도 붙여넣기 한다.
/* 폰트 초기화 */
body, input, textarea, select, button, table {
font-family: 'Nanum Gothic', AppleSDGothicNeo-Regular, 'Malgun Gothic', '맑은 고딕', dotum, '돋움', sans-serif;
}
.header .header-tit h1 {background: #4aa8d4; font-size: 28px; padding:5px 20px 6px 20px; display: inline-block; margin-top: 40px; font-weight: normal; text-transform: uppercase;}
'HTML & CSS' 카테고리의 다른 글
[HTML, CSS] overflow: hidden; (0) | 2020.08.19 |
---|---|
[HTML, CSS] 헤더 아이콘 수정 2 (이미지 스프라이트) (0) | 2020.08.18 |
[HTML, CSS] 헤더 타이틀 넣기 (0) | 2020.08.18 |
[HTML, CSS] 헤더 아이콘 수정 1 (0) | 2020.08.18 |
[HTML, CSS] 헤더에 메뉴 넣기 (inline / block 구조 차이) (0) | 2020.08.18 |