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