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