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