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