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