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