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