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