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