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