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