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