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