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