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