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