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