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