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