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