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