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