에러
GET http://localhost:8083/Bizman/font/NANUMMYEONGJOBOLD.TTF net::ERR_ABORTED 404
원인
- 경로 이상
- 파일 없음
해결
CSS에서 웹폰트 경로만 바꿔주면 되므로 타 사이트에서 복사해와 새 경로로 수정
만약 폰트 파일을 불러와서 쓰고 있다면 파일이 존재하는지, 경로가 이상하지는 않을지 확인할 것
//나눔명조굵은체 웹폰트
@font-face {
font-family: "NanumMyeongjoBold";
src: url("https://db.onlinewebfonts.com/t/a9a477c58e47130eae4553bb78ea45e8.eot");
src: url("https://db.onlinewebfonts.com/t/a9a477c58e47130eae4553bb78ea45e8.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/a9a477c58e47130eae4553bb78ea45e8.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/a9a477c58e47130eae4553bb78ea45e8.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/a9a477c58e47130eae4553bb78ea45e8.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/a9a477c58e47130eae4553bb78ea45e8.svg#NanumMyeongjoBold")format("svg");
}
참고
반응형
'백엔드' 카테고리의 다른 글
깃허브에 폴더 업로드 (0) | 2023.10.09 |
---|---|
putty 폰트 크기 변경 (0) | 2023.08.31 |
삭제한 stash 복구하기 (0) | 2023.08.28 |
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis (2) | 2023.08.24 |
MyBatis: Mapped Statements collection already contains value for ~ 에러 (0) | 2023.08.24 |