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