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