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