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