|
폰트종류에 따라 윈도우에서 기본 재공되는 폰트외에 다른폰트를 사용하려고 하는데요
.css 페이지에서
@font-face{
font-family:GothamL;
src:url(img/Gotham-Light.eot) format('eot');
src:local('Gotham-Light'), url(img/Gotham-Light.ttf) format('truetype');
}
.gogogo {
font-size: 14px;
font-family: GothamL;
color: #575756;
line-height:19px;
letter-spacing:-0.5px;
}
이렇게 설정해주고
html페이지에서
<link href="img/gogo.css" rel="stylesheet" type="text/css">
하고
테이블에 class="gogogo" 로 적용하였는데
폰트 적용이 되지 않아서요..
저 폰트 파일도 ftp에 올려놓았구 절대경로건 상대경로건
적용이 되지 않는데
잘못된 부분이 있는지 알려주세요 ㅠ_ㅠ
<link href="img/gogo.css" rel="stylesheet" type="text/css">
이부분에서 gogo.css가 있는 경로가 제대로 맞는지....확인해보시고
제생각엔 이게 아닌가 합니다
<link href="/img/gogo.css" rel="stylesheet" type="text/css">