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