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