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