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