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