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