Answers for "fontface import woff"

CSS
0

@fontface otf

@font-face {
  font-family: 'MyWebFont';
  src: url('myfont.woff2') format('woff2'),
       url('myfont.woff') format('woff'),
       url('myfont.ttf') format('truetype');
}
Posted by: Guest on February-24-2021
-1

import font woff css

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

Code answers related to "fontface import woff"

Browse Popular Code Answers by Language