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