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