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