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