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