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