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