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