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