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