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