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