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