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