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