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