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