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