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