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