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