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