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