programing

CSS를 사용하여 글꼴 .ttf를 포함하는 방법?

powerit 2023. 9. 10. 12:42
반응형

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 형식이 있다고 가정합니다.이 모든 프로세스를 자동화하려면 Transfonter.org 을 사용할 수 있습니다.

또한 현대 브라우저는 .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");
}

이것이 오래된 게시물이라는 것을 알고 있지만 이것으로 내 문제가 해결되었습니다.

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

알려드립니다src:url("../fonts/font-name.ttf");루트 디렉터리로 돌아간 다음 글꼴 폴더 또는 파일이 있는 곳으로 이동하는 데 두 개의 마침표를 사용합니다.

이것이 누군가에게 도움이 되기를 바랍니다. 행복한 코딩.

콘솔에서 리소스가 로드되었는지 확인합니다.파일 및 폴더 구조에 따라 URL이 틀릴 수 있습니다.다음과 같은 차이점에 주목하십시오.

src: url('/VT323/VT323-Regular.ttf') format('truetype');

src: url('VT323/VT323-Regular.ttf') format('truetype');

src: url('../VT323/VT323-Regular.ttf') format('truetype');

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

반응형