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