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