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