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