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