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