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