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