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