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