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