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