Answers for "import font woff css"

CSS
0

css import font 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.woff2') format('woff2'), Super Modern Browsers
         url('webfont.woff') format('woff'), /* Pretty Modern Browsers  */
         url('webfont.ttf')  format('truetype'), /* Safari, Android, iOS  */
         url('webfont.svg#svgFontName') format('svg'); /* Legacy iOS  */
  }

@font-face {
    font-family: 'MyWebFont';
    src: url('myfont.woff2') format('woff2'),
         url('myfont.woff') format('woff'),
         url('myfont.ttf') format('truetype');
  }  

  body {
    font-family: 'MyWebFont', Fallback, sans-serif;
  }
Posted by: Guest on July-02-2021
2

import font css

@font-face {
  font-family: "Open Sans";
  src: url("/fonts/OpenSans-Regular-webfont.woff2") format("woff2"),
       url("/fonts/OpenSans-Regular-webfont.woff") format("woff");
}
Posted by: Guest on July-31-2020
0

import font woff css

body {
  font-family: 'MyWebFont', Fallback, sans-serif;
}
Posted by: Guest on October-18-2021

Browse Popular Code Answers by Language