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