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