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