Answers for "get font face"

CSS
2

@font-face rule in 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

how to find a fontface url

@font-face {
	font-family: Chunkfive;
	src: url('Chunkfive.otf');
}
Posted by: Guest on February-20-2020

Browse Popular Code Answers by Language