Answers for "after importing a font css how to use"

CSS
3

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
-1

import font woff css

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

Code answers related to "after importing a font css how to use"

Browse Popular Code Answers by Language