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