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