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