Use on the webTotal Use [ 4748 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/c9b2ba16c0fa9eda549fc942fd5e80cc?family=FacetBlack+Regular" 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/c9b2ba16c0fa9eda549fc942fd5e80cc?family=FacetBlack+Regular);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "FacetBlack Regular";
src: url("https://db.onlinewebfonts.com/t/c9b2ba16c0fa9eda549fc942fd5e80cc.eot");
src: url("https://db.onlinewebfonts.com/t/c9b2ba16c0fa9eda549fc942fd5e80cc.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/c9b2ba16c0fa9eda549fc942fd5e80cc.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/c9b2ba16c0fa9eda549fc942fd5e80cc.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/c9b2ba16c0fa9eda549fc942fd5e80cc.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/c9b2ba16c0fa9eda549fc942fd5e80cc.svg#FacetBlack Regular")format("svg");
}
2CSS rules to specify fonts
font-family: "FacetBlack Regular";