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