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