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