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