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