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