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