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