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