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