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