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