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