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