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