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