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