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