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