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