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