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