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