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