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