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