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