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