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