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