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