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