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