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