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