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