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