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