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