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