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