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