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