반응형
맥 사파리 한글 사이트 접속시 시스템 글꼴이 아닌 명조체로 나오는 경우가 있음.
1. 사파리 실행 후 상단 바에서 Safari - setting 선택
2. 아래 내용으로 확장자 .css 파일 생성
@font-face {
font-family: "돋움";
src: local("Apple SD Gothic Neo");
}
@font-face {
font-family: Dotum;
src: local("Apple SD Gothic Neo");
}
@font-face {
font-family: DotumChe;
src: local("Apple SD Gothic Neo");
}
@font-face {
font-family: 'Malgun Gothic';
src: local("Apple SD Gothic Neo");
}
@font-face {
font-family: "굴림";
src: local("Apple SD Gothic Neo");
}
@font-face {
font-family: Gulim;
src: local("Apple SD Gothic Neo");
}
@font-face {
font-family: GulimChe;
src: local("Apple SD Gothic Neo");
}
@font-face {
font-family: AppleGothic;
src: local("Apple SD Gothic Neo");
}
3. Advanced 탭에서 Style sheet 에서 Others 선택 후 생성된 css파일 적용.
4. 사파리 재시작 혹은 재부팅 시 적용됨.
반응형
'Information > IT' 카테고리의 다른 글
[How to] 챗GPT 잘 사용하는 방법 (0) | 2024.01.24 |
---|---|
[Review]Python Tutorial #8. How To Use Dictionaries In Python (0) | 2019.02.13 |
[Review]Python Tutorial #7. More About For Loops in Python & Solutions to the Last 2 Problems (0) | 2019.01.27 |
[Review]Python Tutorial #6. While loops and the break statement in Python (0) | 2019.01.23 |
[Review] Python Tutorial #5. Introduction to For Loops (0) | 2019.01.02 |