Programing

CSS를 사용하여 글꼴 .ttf를 포함하는 방법은 무엇입니까?

lottogame 2020. 9. 24. 08:12
반응형

CSS를 사용하여 글꼴 .ttf를 포함하는 방법은 무엇입니까?


내 코드에 문제가 있습니다. 내 페이지에 전역 글꼴을 포함하고 싶어서 .ttf 파일을 다운로드했습니다. 그리고 내 기본 CSS에 포함하지만 글꼴은 변경되지 않습니다.

다음은 내 간단한 코드입니다.

@font-face {
    font-family: 'oswald';
    src: url('/font/oswald.regular.ttf');
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    font-size:100%;
    font:inherit;
    font-family: oswald;
    vertical-align:baseline
} 

나는 내가 어디로 잘못 갔는지 모른다. 이것으로 나를 도울 수 있습니까? 감사.


웹 폰트 용 .ttf 파일 만 제공하는 것만으로는 브라우저 간 지원에 충분하지 않습니다. 현재 가능한 최상의 조합은 다음과 같이 조합을 사용하는 것입니다.

@font-face {
  font-family: 'MyWebFont';
  src: url('webfont.eot'); /* IE9 Compat Modes */
  src: url('webfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('webfont.woff') format('woff'), /* Modern Browsers */
       url('webfont.ttf')  format('truetype'), /* Safari, Android, iOS */
       url('webfont.svg#svgFontName') format('svg'); /* Legacy iOS */
}

이 코드는 웹 폰트에 .eot, .woff, .ttf 및 svg 형식이 있다고 가정합니다. 이 모든 프로세스를 자동화하려면 다음을 사용할 수 있습니다. Font-Squirrel : Web Font Generator .

또한 최신 브라우저는 .woff 글꼴로 이동하고 있으므로이 작업도 수행 할 수 있습니다.

@font-face {
  font-family: 'MyWebFont';
  src: url('myfont.woff') format('woff'), /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
   url('myfont.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */
}  

자세한 내용은 http://css-tricks.com/snippets/css/using-font-face/에서 확인하세요.


브라우저 지원 찾기 : 글꼴을 사용할 수 있습니까?


포맷을 시도 했습니까?

@font-face {
  font-family: 'The name of the Font Family Here';
  src: URL('font.ttf') format('truetype');
}

이 기사 읽기 : http://css-tricks.com/snippets/css/using-font-face/

또한 브라우저에 따라 다를 수 있습니다.


다음과 같이 글꼴을 사용할 수 있습니다.

@font-face {
  font-family:"Name-Of-Font";
  src: url("yourfont.ttf") format("truetype");
}

참고 URL : https://stackoverflow.com/questions/24990554/how-to-include-a-font-ttf-using-css

반응형