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