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