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