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