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