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