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