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