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