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