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