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