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