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