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