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