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