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