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