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