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