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