그래, 질문 중이며 다시 묻는 질문입니다. 나는 내가 숙제를했다고 생각하지만, 여전히 나의 브라우저 중 어느 것도 웹 서버에서 글꼴을 가져 오지 않는다 (로그에 따르면).html로 글꼴 포함하기
CSS는 :
@font-face {
font-family: "Open Sans";
/*src: local('Open Sans'), local('OpenSans'), url(http://zhegan.in/OpenSans.woff2) format('woff2');*/
src: url(http://zhegan.in/OpenSans.ttf) format('truetype'), url(http://zhegan.in/OpenSans.woff) format('woff'), url(http://zhegan.in/OpenSans.woff2) format('woff2');
font-style: normal;
font-weight: 400;
unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
}
body {
color: #3F3F3F;
font-family: "Open Sans";
font-weight: 400;
font-style: normal;
}
테스트 페이지는 my test site here이다. 나는 옵션과 아이디어가 없기 때문에 최후의 수단으로 여기에서 질문하기로 마음 먹었다.
'U + 0460'은 늦은 출발점입니다. 당신이 원하는 캐릭터가'U + 0400'에서 시작합니다. – 4castle