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