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