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