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