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