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