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