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