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