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