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