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