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