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