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