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