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