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