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