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