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