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