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