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