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