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