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