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