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