Answers for "font-face otf css"

CSS
2

otf css3 font-face

@font-face {
    font-family: GraublauWeb;
    src: url("path/GraublauWeb.otf") format("opentype");
}
Posted by: Guest on August-18-2020
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

Browse Popular Code Answers by Language