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