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