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