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