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