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