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