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