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