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