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