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