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