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