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