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