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