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