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