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