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