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