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