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