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