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