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