Use on the webTotal Use [ 5550 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/31f3674197dcd50fd079a65d5c08eafb?family=Facet+W90+Black" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/31f3674197dcd50fd079a65d5c08eafb?family=Facet+W90+Black);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Facet W90 Black";
src: url("https://db.onlinewebfonts.com/t/31f3674197dcd50fd079a65d5c08eafb.eot");
src: url("https://db.onlinewebfonts.com/t/31f3674197dcd50fd079a65d5c08eafb.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/31f3674197dcd50fd079a65d5c08eafb.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/31f3674197dcd50fd079a65d5c08eafb.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/31f3674197dcd50fd079a65d5c08eafb.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/31f3674197dcd50fd079a65d5c08eafb.svg#Facet W90 Black")format("svg");
}
2CSS rules to specify fonts
font-family: "Facet W90 Black";