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