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