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