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