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