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