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