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