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