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