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